Class java.lang.CloneNotSupportedException
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.CloneNotSupportedException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.CloneNotSupportedException
- public class CloneNotSupportedException
- extends Exception
Signals that an attempt has been made to clone an object that does not
want to be cloned.
-
CloneNotSupportedException()
- Constructs an CloneNotSupportedException with no detail message.
-
CloneNotSupportedException(String)
- Constructs an CloneNotSupportedException with the specified detail message.
CloneNotSupportedException
public CloneNotSupportedException()
- Constructs an CloneNotSupportedException with no detail message.
A detail message is a String that describes this particular exception.
CloneNotSupportedException
public CloneNotSupportedException(String s)
- Constructs an CloneNotSupportedException with the specified detail message.
A detail message is a String that describes this particular exception.
- Parameters:
- s - the detail message
All Packages Class Hierarchy This Package Previous Next Index