org.jsmpp.extra
Class ResponseTimeoutException

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

public class ResponseTimeoutException
extends java.lang.Exception

Throw if the the response never come for specified timeout.

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

Field Summary
private static long serialVersionUID
           
 
Constructor Summary
ResponseTimeoutException()
          Default constructor.
ResponseTimeoutException(java.lang.String message)
          Construct with specified message.
ResponseTimeoutException(java.lang.String message, java.lang.Throwable cause)
          Construct with specified message and cause.
ResponseTimeoutException(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
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

ResponseTimeoutException

public ResponseTimeoutException()
Default constructor.


ResponseTimeoutException

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

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

ResponseTimeoutException

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

Parameters:
message - is the detail message.

ResponseTimeoutException

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

Parameters:
cause - is the cause.