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:
  • Constructor Details

    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException()
      Default constructor.
    • ICUCloneNotSupportedException

      public ICUCloneNotSupportedException(String message)
      Constructor.
      Parameters:
      message - exception message string
    • ICUCloneNotSupportedException

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

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