VMware GemFire Java API Reference
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:
Serializable
public class InvalidDeltaException extends GemFireException
AnInvalidDeltaExceptionis thrown when a delta cannot be successfully applied by the receiving peer/client. The class implementingDeltamay 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(String msg)Creates a newInvalidDeltaException.InvalidDeltaException(String msg, Throwable e)Creates a newInvalidDeltaException.InvalidDeltaException(Throwable e)Creates a newInvalidDeltaException.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidDeltaException
public InvalidDeltaException()
Creates a newInvalidDeltaException.
-
InvalidDeltaException
public InvalidDeltaException(String msg)
Creates a newInvalidDeltaException.- Parameters:
msg- String explaining the exception
-
InvalidDeltaException
public InvalidDeltaException(Throwable e)
Creates a newInvalidDeltaException.- Parameters:
e- Throwable
-
-