Class CloneFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.lang.exception.NestableRuntimeException
org.apache.commons.lang.exception.CloneFailedException
- All Implemented Interfaces:
Serializable,Nestable
Exception thrown when a clone cannot be created. In contrast to
CloneNotSupportedException this is a RuntimeException.- Since:
- 2.6
- See Also:
-
Field Summary
Fields inherited from class org.apache.commons.lang.exception.NestableRuntimeException
delegate -
Constructor Summary
ConstructorsConstructorDescriptionCloneFailedException(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 org.apache.commons.lang.exception.NestableRuntimeException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTraceMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
message- description of the exception- Since:
- upcoming
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
cause- cause of the exception- Since:
- upcoming
-
CloneFailedException
Constructs a CloneFailedException.- Parameters:
message- description of the exceptioncause- cause of the exception- Since:
- upcoming
-