Package org.apache.geode
Class CopyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.CopyException
- All Implemented Interfaces:
Serializable
Indicates a failure to copy an object.
- Since:
- GemFire 4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newCopyException.CopyException(String msg) Constructs a newCopyExceptionwith a message string.CopyException(String msg, Throwable cause) Constructs a newCopyExceptionwith a message string and a cause.CopyException(Throwable cause) Constructs a newCopyExceptionwith a cause. -
Method Summary
Methods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CopyException
public CopyException()Constructs a newCopyException. -
CopyException
Constructs a newCopyExceptionwith a message string.- Parameters:
msg- a message string
-
CopyException
Constructs a newCopyExceptionwith a message string and a cause.- Parameters:
msg- the message stringcause- a causal Throwable
-
CopyException
Constructs a newCopyExceptionwith a cause.- Parameters:
cause- a causal Throwable
-