org.jsmpp.extra
Class QueueMaxException

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

public class QueueMaxException
extends QueueException

This exception is thrown if the message queue has reach it maximum size.

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

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

QueueMaxException

public QueueMaxException()
Default constructor.


QueueMaxException

public QueueMaxException(java.lang.String message,
                         java.lang.Throwable cause)
Construct with specified detail messsage and cause.

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

QueueMaxException

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

Parameters:
message - is the detail message.

QueueMaxException

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

Parameters:
cause - is the parent cause.