org.jsmpp
Class InvalidCommandLengthException

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

public class InvalidCommandLengthException
extends PDUException

This exception is thrown if command_length of PDU is not acceptable.

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

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

InvalidCommandLengthException

public InvalidCommandLengthException()
Default constructor.


InvalidCommandLengthException

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

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

InvalidCommandLengthException

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

Parameters:
message - is the detail message.

InvalidCommandLengthException

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

Parameters:
cause - is the parent cause.