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
public class OverflowException extends IOException
An exception that is thrown if a buffer would overflow as a result of a write operation.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description OverflowException()Constructs 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 Detail
- 
OverflowException
public OverflowException()
Constructs a new exception with null as its detail message. 
- 
OverflowException
public OverflowException(String message)
Constructs a new exception with the specified detail message.- Parameters:
 message- The specified detail message.
 
- 
OverflowException
public OverflowException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
 cause- The specified cause of this exception.
 
 - 
 
 -