Class ICUCloneNotSupportedException

All Implemented Interfaces:
Serializable

public class ICUCloneNotSupportedException extends ICUException
Unchecked version of CloneNotSupportedException. Some ICU APIs do not throw the standard exception but instead wrap it into this unchecked version.
See Also:
Status:
Stable ICU 53.
  • Constructor Details

    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException()
      Default constructor.
      Status:
      Stable ICU 53.
    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException(String message)
      Constructor.
      Parameters:
      message - exception message string
      Status:
      Stable ICU 53.
    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException(Throwable cause)
      Constructor.
      Parameters:
      cause - original exception (normally a CloneNotSupportedException)
      Status:
      Stable ICU 53.
    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException(String message, Throwable cause)
      Constructor.
      Parameters:
      message - exception message string
      cause - original exception (normally a CloneNotSupportedException)
      Status:
      Stable ICU 53.