public class CloneNotSupportedException

  1. Object
  2. Throwable
  3. Exception
  4. 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

detailMessage String
the detail message for this exception.