Class CloneNotSupportedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.CloneNotSupportedException

public class CloneNotSupportedException extends Exception
Thrown when a program attempts to clone an object which does not support the Cloneable interface.
See Also:
  • 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 - the detail message for this exception.