Package com.imsl.datamining
Class PredictiveModel.CloneNotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.imsl.IMSLException
com.imsl.datamining.PredictiveModel.PredictiveModelException
com.imsl.datamining.PredictiveModel.CloneNotSupportedException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- PredictiveModel
public static class PredictiveModel.CloneNotSupportedException
extends PredictiveModel.PredictiveModelException
Wraps the
java.lang.CloneNotSupportedException to indicate
that the clone method in class Object has been
called to clone an object, but that the object's class does not implement
the Cloneable interface.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCloneNotSupportedException(String message) Constructs aCloneNotSupportedExceptionand issues the specified message.CloneNotSupportedException(String key, Object[] arguments) Constructs aCloneNotSupportedExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CloneNotSupportedException
Constructs aCloneNotSupportedExceptionand issues the specified message.- Parameters:
message- aStringthat contains a message to be issued when the exception occurs
-
CloneNotSupportedException
Constructs aCloneNotSupportedExceptionwith the specified detail message. The error message string is in a resource bundle, ErrorMessages.- Parameters:
key- aStringthat contains the key of an error message in the resource bundlearguments- anObjectarray containing arguments used within the error message specified by thekey
-