| java.lang.Object java.lang.Throwable java.lang.Exception gov.nist.siplite.stack.SIPServerException
Method Summary | |
public int | getRC() Gets the reason code. | public Message | getSIPMessage() Gets the message that generated this exception. |
rc | protected int rc(Code) | | Return code.
|
sipMessage | protected Message sipMessage(Code) | | The saved SIP server message.
|
SIPServerException | public SIPServerException(int rc)(Code) | | Constructor when we are given only the error code
Parameters: rc - Return code. |
SIPServerException | public SIPServerException(int rc, String msg)(Code) | | Constructor for when we have the error code and some error info.
Parameters: rc - SIP Return code Parameters: msg - Error message |
SIPServerException | public SIPServerException(int rc, Message message, String msg)(Code) | | Constructor for when we have a return code and a Message.
Parameters: rc - SIP error code Parameters: message - SIP Error message Parameters: msg - Auxiliary error message |
SIPServerException | public SIPServerException(String response)(Code) | | Constructor when we have a pre-formatted response.
Parameters: response - Pre-formatted response to send back to theother end. |
SIPServerException | public SIPServerException(int rc, Message sipMessage)(Code) | | Constructor that constructs the message from the standard
Error messages.
Parameters: rc - is the SIP Error code. Parameters: sipMessage - is the SIP Message that caused the exception. |
getRC | public int getRC()(Code) | | Gets the reason code.
the reason code |
getSIPMessage | public Message getSIPMessage()(Code) | | Gets the message that generated this exception.
-- the message that generated this exception. |
|
|