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:
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(String message)
Constructor.ICUCloneNotSupportedException(String message, Throwable cause)
Constructor.ICUCloneNotSupportedException(Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
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 aCloneNotSupportedException
)
-
ICUCloneNotSupportedException
public ICUCloneNotSupportedException(String message, Throwable cause)
Constructor.- Parameters:
message
- exception message stringcause
- original exception (normally aCloneNotSupportedException
)
-
-