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:
Serializable
public class BufferOverflowException extends RuntimeException
The BufferOverflowException is used when the buffer's capacity has been exceeded.- Since:
- Commons Collections 2.1
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Avalon, Berin Loritsch, Jeff Turner, Paul Jack, Stephen Colebourne
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BufferOverflowException()
Constructs a newBufferOverflowException
.BufferOverflowException(String message)
Construct a newBufferOverflowException
.BufferOverflowException(String message, Throwable exception)
Construct a newBufferOverflowException
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getCause()
Gets the root cause of the exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BufferOverflowException
public BufferOverflowException()
Constructs a newBufferOverflowException
.
-
BufferOverflowException
public BufferOverflowException(String message)
Construct a newBufferOverflowException
.- Parameters:
message
- the detail message for this exception
-
-