org.jsmpp.extra
Class QueueException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jsmpp.extra.QueueException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
QueueMaxException

public class QueueException
extends java.lang.Exception

General queue exception.

Since:
1.0
Version:
1.0
Author:
uudashr
See Also:
Serialized Form

Constructor Summary
QueueException()
          Default constructor.
QueueException(java.lang.String message)
          Construct with specified message.
QueueException(java.lang.String message, java.lang.Throwable cause)
          Construct with specified message and cause.
QueueException(java.lang.Throwable cause)
          Construct with specified cause.
 
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()
Default constructor.


QueueException

public QueueException(java.lang.String message,
                      java.lang.Throwable cause)
Construct with specified message and cause.

Parameters:
message - is the detail message.
cause - is the cause.

QueueException

public QueueException(java.lang.String message)
Construct with specified message.

Parameters:
message - is the detail message.

QueueException

public QueueException(java.lang.Throwable cause)
Construct with specified cause.

Parameters:
cause - is the cause of an error.