Gemfire JavaDocs
Package org.apache.geode
Class InvalidDeltaException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.InvalidDeltaException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidDeltaException extends GemFireException
AnInvalidDeltaException
is thrown when a delta cannot be successfully applied by the receiving peer/client. The class implementingDelta
may also choose to throw this inDelta.fromDelta(DataInput in)
. GemFire, on encountering this exception distributes the full application object.- Since:
- GemFire 6.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidDeltaException()
Creates a newInvalidDeltaException
.InvalidDeltaException(java.lang.String msg)
Creates a newInvalidDeltaException
.InvalidDeltaException(java.lang.String msg, java.lang.Throwable e)
Creates a newInvalidDeltaException
.InvalidDeltaException(java.lang.Throwable e)
Creates a newInvalidDeltaException
.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
InvalidDeltaException
public InvalidDeltaException()
Creates a newInvalidDeltaException
.
-
InvalidDeltaException
public InvalidDeltaException(java.lang.String msg)
Creates a newInvalidDeltaException
.- Parameters:
msg
- String explaining the exception
-
InvalidDeltaException
public InvalidDeltaException(java.lang.Throwable e)
Creates a newInvalidDeltaException
.- Parameters:
e
- Throwable
-
InvalidDeltaException
public InvalidDeltaException(java.lang.String msg, java.lang.Throwable e)
Creates a newInvalidDeltaException
.- Parameters:
msg
- String explaining the exceptione
- Throwable
-
-