Package org.apache.commons.collections
Class BufferOverflowException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 - 
- org.apache.commons.collections.BufferOverflowException
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class BufferOverflowException extends java.lang.RuntimeExceptionThe BufferOverflowException is used when the buffer's capacity has been exceeded.- Since:
 - Commons Collections 2.1
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description BufferOverflowException()Constructs a newBufferOverflowException.BufferOverflowException(java.lang.String message)Construct a newBufferOverflowException.BufferOverflowException(java.lang.String message, java.lang.Throwable exception)Construct a newBufferOverflowException. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Gets the root cause of the exception. 
 - 
 
- 
- 
Constructor Detail
- 
BufferOverflowException
public BufferOverflowException()
Constructs a newBufferOverflowException. 
- 
BufferOverflowException
public BufferOverflowException(java.lang.String message)
Construct a newBufferOverflowException.- Parameters:
 message- the detail message for this exception
 
- 
BufferOverflowException
public BufferOverflowException(java.lang.String message, java.lang.Throwable exception)Construct a newBufferOverflowException.- Parameters:
 message- the detail message for this exceptionexception- the root cause of the exception
 
 - 
 
 -