Package com.ibm.icu.util
Class ICUException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.icu.util.ICUException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ICUCloneNotSupportedException
,ICUInputTooLongException
public class ICUException extends java.lang.RuntimeException
Base class for unchecked, ICU-specific exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ICUException()
Default constructor.ICUException(java.lang.String message)
Constructor.ICUException(java.lang.String message, java.lang.Throwable cause)
Constructor.ICUException(java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
ICUException
public ICUException()
Default constructor.
-
ICUException
public ICUException(java.lang.String message)
Constructor.- Parameters:
message
- exception message string
-
ICUException
public ICUException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- original exception
-
ICUException
public ICUException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- exception message stringcause
- original exception
-
-