Class CloneFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.lang3.exception.CloneFailedException
- All Implemented Interfaces:
Serializable
Exception thrown when a clone cannot be created. In contrast to
CloneNotSupportedException
this is a RuntimeException
.- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCloneFailedException
(String message) Constructs a CloneFailedException.CloneFailedException
(String message, Throwable cause) Constructs a CloneFailedException.CloneFailedException
(Throwable cause) Constructs a CloneFailedException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
message
- description of the exception
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
message
- description of the exceptioncause
- cause of the exception
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
cause
- cause of the exception
-