org.apache.commons.collections

Class BufferOverflowException

public class BufferOverflowException extends RuntimeException

The BufferOverflowException is used when the buffer's capacity has been exceeded.

Since: Commons Collections 2.1

Version: $Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $

Author: Avalon Berin Loritsch Jeff Turner Paul Jack Stephen Colebourne

Constructor Summary
BufferOverflowException()
Constructs a new BufferOverflowException.
BufferOverflowException(String message)
Construct a new BufferOverflowException.
BufferOverflowException(String message, Throwable exception)
Construct a new BufferOverflowException.
Method Summary
ThrowablegetCause()
Gets the root cause of the exception.

Constructor Detail

BufferOverflowException

public BufferOverflowException()
Constructs a new BufferOverflowException.

BufferOverflowException

public BufferOverflowException(String message)
Construct a new BufferOverflowException.

Parameters: message the detail message for this exception

BufferOverflowException

public BufferOverflowException(String message, Throwable exception)
Construct a new BufferOverflowException.

Parameters: message the detail message for this exception exception the root cause of the exception

Method Detail

getCause

public final Throwable getCause()
Gets the root cause of the exception.

Returns: the root cause

Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.