brahms.base.util
Class QueueException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by brahms.base.util.QueueException
All Implemented Interfaces:
java.io.Serializable

public class QueueException
extends java.lang.Exception

The QueueException is an exception thrown when a problem arises with enqueuing or dequeueing elements.

Version:
$Revision: 1.1 $ $Date: 2007/10/10 14:02:57 $ $Author: rvhoof $
Author:
Ron van Hoof
See Also:
Serialized Form

Constructor Summary
QueueException()
          Constructor, creates a new QueueException with no detail message
QueueException(java.lang.String message)
          Constructor, creates a new QueueException with the given detail message
QueueException(java.lang.String message, java.lang.Throwable t)
          Constructor, creates a new QueueException with the given detail message wrapping the given exception
QueueException(java.lang.Throwable t)
          Constructor, creates a new QueueException with the given linked exception
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

QueueException

public QueueException()
Constructor, creates a new QueueException with no detail message


QueueException

public QueueException(java.lang.String message)
Constructor, creates a new QueueException with the given detail message

Parameters:
message - the detail message

QueueException

public QueueException(java.lang.Throwable t)
Constructor, creates a new QueueException with the given linked exception

Parameters:
t - the Throwable to be linked to this exception

QueueException

public QueueException(java.lang.String message,
                      java.lang.Throwable t)
Constructor, creates a new QueueException with the given detail message wrapping the given exception

Parameters:
message - the detail message
t - the Throwable to be linked to this exception


Copyright © 1997-2012 All Rights Reserved.