Package org.forgerock.http.io
Class OverflowException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.forgerock.http.io.OverflowException
- All Implemented Interfaces:
Serializable
An exception that is thrown if a buffer would overflow as a result of a write operation.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new exception with null as its detail message.OverflowException
(String message) Constructs a new exception with the specified detail message.OverflowException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.OverflowException
(Throwable cause) Constructs a new exception with the specified 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
-
OverflowException
public OverflowException()Constructs a new exception with null as its detail message. -
OverflowException
Constructs a new exception with the specified detail message.- Parameters:
message
- The specified detail message.
-
OverflowException
Constructs a new exception with the specified cause.- Parameters:
cause
- The specified cause of this exception.
-
OverflowException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The specified detail message.cause
- The specified cause of this exception.
-