Gemfire JavaDocs_test
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:
java.io.Serializable
public class CopyException extends GemFireException
Indicates a failure to copy an object.- Since:
- GemFire 4.0
- See Also:
CopyHelper.copy(T)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CopyException()
Constructs a newCopyException
.CopyException(java.lang.String msg)
Constructs a newCopyException
with a message string.CopyException(java.lang.String msg, java.lang.Throwable cause)
Constructs a newCopyException
with a message string and a cause.CopyException(java.lang.Throwable cause)
Constructs a newCopyException
with a cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
CopyException
public CopyException()
Constructs a newCopyException
.
-
CopyException
public CopyException(java.lang.String msg)
Constructs a newCopyException
with a message string.- Parameters:
msg
- a message string
-
CopyException
public CopyException(java.lang.String msg, java.lang.Throwable cause)
Constructs a newCopyException
with a message string and a cause.- Parameters:
msg
- the message stringcause
- a causal Throwable
-
CopyException
public CopyException(java.lang.Throwable cause)
Constructs a newCopyException
with a cause.- Parameters:
cause
- a causal Throwable
-
-