org.opennms.bb.common.components
Class QueueClosedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.opennms.bb.common.components.QueueClosedException
All Implemented Interfaces:
Serializable

public class QueueClosedException
extends RuntimeException

The QueueClosedException class is thrown by various queues, espically the producer/consumer queues, when threads are waiting to add/read objects and the queue is closed during the operations. In those cases the add to, or read from, the queue was not successful because of the queue being closed.

Version:
$Revision: 1.5 $
Author:
Brian Weaver, Sowmya, OpenNMS
See Also:
Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
QueueClosedException()
           
QueueClosedException(String s)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

QueueClosedException

public QueueClosedException()

QueueClosedException

public QueueClosedException(String s)