Module org.jhotdraw8.icollection
Class SizeLimitExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jhotdraw8.icollection.exception.SizeLimitExceededException
- All Implemented Interfaces:
Serializable
This exception is thrown when a method exceeds a size limit.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance without a message.SizeLimitExceededException(String message) Constructs an instance with the specified error message.SizeLimitExceededException(String message, Throwable cause) Constructs an instance with the specified error message and cause.Constructs an instance with the specified underlying cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SizeLimitExceededException
public SizeLimitExceededException()Constructs an instance without a message. -
SizeLimitExceededException
Constructs an instance with the specified error message.- Parameters:
message- the error message
-
SizeLimitExceededException
Constructs an instance with the specified error message and cause.- Parameters:
message- the error messagecause- the underlying cause
-
SizeLimitExceededException
Constructs an instance with the specified underlying cause.- Parameters:
cause- the underlying cause
-