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:
 java.io.Serializable,Nestable
public class CloneFailedException extends NestableRuntimeException
Exception thrown when a clone cannot be created. In contrast toCloneNotSupportedExceptionthis is aRuntimeException.- Since:
 - 2.6
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description CloneFailedException(java.lang.String message)Constructs a CloneFailedException.CloneFailedException(java.lang.String message, java.lang.Throwable cause)Constructs a CloneFailedException.CloneFailedException(java.lang.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, printStackTrace 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
CloneFailedException
public CloneFailedException(java.lang.String message)
Constructs a CloneFailedException.- Parameters:
 message- description of the exception- Since:
 - upcoming
 
 
- 
CloneFailedException
public CloneFailedException(java.lang.Throwable cause)
Constructs a CloneFailedException.- Parameters:
 cause- cause of the exception- Since:
 - upcoming
 
 
- 
CloneFailedException
public CloneFailedException(java.lang.String message, java.lang.Throwable cause)Constructs a CloneFailedException.- Parameters:
 message- description of the exceptioncause- cause of the exception- Since:
 - upcoming
 
 
 - 
 
 -