public class

BufferOverflowException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.apache.commons.collections.BufferOverflowException

Class Overview

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

Summary

Public Constructors
BufferOverflowException()
Constructs a new BufferOverflowException.
BufferOverflowException(String message)
Construct a new BufferOverflowException.
BufferOverflowException(String message, Throwable exception)
Construct a new BufferOverflowException.
Public Methods
final Throwable getCause()
Gets the root cause of the exception.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public BufferOverflowException ()

Constructs a new BufferOverflowException.

public BufferOverflowException (String message)

Construct a new BufferOverflowException.

Parameters
message the detail message for this exception

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

Public Methods

public final Throwable getCause ()

Gets the root cause of the exception.

Returns
  • the root cause