blob: 194a1fd16892e75b4627a8caa4bea1d06ad60f79 [file] [log] [blame]
// © 2020 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
package com.ibm.icu.util;
/**
* 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.
*
* @draft ICU 68
* @provisional This API might change or be removed in a future release.
*/
public class ICUInputTooLongException extends ICUException {
private static final long serialVersionUID = -2602876786689338226L;
/**
* Default constructor.
*
* @draft ICU 68
* @provisional This API might change or be removed in a future release.
*/
public ICUInputTooLongException() {
}
/**
* Constructor.
*
* @param message exception message string
* @draft ICU 68
* @provisional This API might change or be removed in a future release.
*/
public ICUInputTooLongException(String message) {
super(message);
}
/**
* Constructor.
*
* @param cause original exception
* @draft ICU 68
* @provisional This API might change or be removed in a future release.
*/
public ICUInputTooLongException(Throwable cause) {
super(cause);
}
/**
* Constructor.
*
* @param message exception message string
* @param cause original exception
* @draft ICU 68
* @provisional This API might change or be removed in a future release.
*/
public ICUInputTooLongException(String message, Throwable cause) {
super(message, cause);
}
}