⇒ Index (Frames) |  ⇒ Index (No Frames) |  ⇒ Package |  ⇒ Package Tree |  ⇒ Full Tree 
org.apache.commons.collections

Class BufferUnderflowException

NoSuchElementException
|
+--org.apache.commons.collections.BufferUnderflowException


public class BufferUnderflowException
extends NoSuchElementException

The BufferUnderflowException is used when the buffer is already empty.

NOTE: From version 3.0, this exception extends NoSuchElementException.

Since:
Commons Collections 2.1
Authors:
Avalon
Berin Loritsch
Jeff Turner
Paul Jack
Stephen Colebourne

Constructor Summary

BufferUnderflowException()

Constructs a new BufferUnderflowException.

BufferUnderflowException(String message)

Construct a new BufferUnderflowException.

BufferUnderflowException(String message, Throwable exception)

Construct a new BufferUnderflowException.

Method Summary

Throwable

getCause()

Gets the root cause of the exception.

Constructor Details

BufferUnderflowException

public BufferUnderflowException()

Constructs a new BufferUnderflowException.


BufferUnderflowException

public BufferUnderflowException(String message, Throwable exception)

Construct a new BufferUnderflowException.

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

BufferUnderflowException

public BufferUnderflowException(String message)

Construct a new BufferUnderflowException.

Parameters:
message - the detail message for this exception

Method Details

getCause

public final Throwable getCause()

Gets the root cause of the exception.

Returns:
the root cause