public class CloneNotSupportedException
Thrown when a program attempts to clone an object which does not support the
Cloneable interface.See also
Constructors
public CloneNotSupportedException() | Constructs a new CloneNotSupportedException that includes the current stack trace. |
public CloneNotSupportedException(String detailMessage) | Constructs a new CloneNotSupportedException with the current stack trace and the specified detail message. |
Inherited methods
Constructor details
CloneNotSupportedException
public CloneNotSupportedException()Constructs a new
CloneNotSupportedException that includes the
current stack trace.CloneNotSupportedException
public CloneNotSupportedException(String detailMessage)Constructs a new
CloneNotSupportedException with the current
stack trace and the specified detail message.Parameters
detailMessageString- the detail message for this exception.