Package com.ibm.icu.util
Class ICUInputTooLongException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.ibm.icu.util.ICUException
-
- com.ibm.icu.util.ICUInputTooLongException
-
- All Implemented Interfaces:
java.io.Serializable
public class ICUInputTooLongException extends ICUException
The input is impractically long for an operation. It is rejected because it may lead to problems such as excessive processing time, stack depth, or heap memory requirements.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ICUInputTooLongException()
Default constructor.ICUInputTooLongException(java.lang.String message)
Constructor.ICUInputTooLongException(java.lang.String message, java.lang.Throwable cause)
Constructor.ICUInputTooLongException(java.lang.Throwable cause)
Constructor.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ICUInputTooLongException
public ICUInputTooLongException()
Default constructor.
-
ICUInputTooLongException
public ICUInputTooLongException(java.lang.String message)
Constructor.- Parameters:
message
- exception message string
-
ICUInputTooLongException
public ICUInputTooLongException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- original exception
-
ICUInputTooLongException
public ICUInputTooLongException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- exception message stringcause
- original exception
-
-