Package com.ibm.icu.util
Class ICUCloneNotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.icu.util.ICUException
-
- com.ibm.icu.util.ICUCloneNotSupportedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ICUCloneNotSupportedException extends ICUException
Unchecked version ofCloneNotSupportedException. Some ICU APIs do not throw the standard exception but instead wrap it into this unchecked version.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ICUCloneNotSupportedException()Default constructor.ICUCloneNotSupportedException(java.lang.String message)Constructor.ICUCloneNotSupportedException(java.lang.String message, java.lang.Throwable cause)Constructor.ICUCloneNotSupportedException(java.lang.Throwable cause)Constructor.
-
-
-
Constructor Detail
-
ICUCloneNotSupportedException
public ICUCloneNotSupportedException()
Default constructor.
-
ICUCloneNotSupportedException
public ICUCloneNotSupportedException(java.lang.String message)
Constructor.- Parameters:
message- exception message string
-
ICUCloneNotSupportedException
public ICUCloneNotSupportedException(java.lang.Throwable cause)
Constructor.- Parameters:
cause- original exception (normally aCloneNotSupportedException)
-
ICUCloneNotSupportedException
public ICUCloneNotSupportedException(java.lang.String message, java.lang.Throwable cause)Constructor.- Parameters:
message- exception message stringcause- original exception (normally aCloneNotSupportedException)
-
-