java.lang.CloneNotSupportedException (JDK 1.0)

Signals that the clone() method has been called for an object of a class that does not implement the Cloneable interface.

public class CloneNotSupportedException extends Exception {
 // Public Constructors public CloneNotSupportedException();
public CloneNotSupportedException(String s);
}

Hierarchy:

Object->Throwable(Serializable)->Exception->CloneNotSupportedException

Thrown By:

Object.clone()