| java.lang.Object java.lang.Throwable java.lang.Exception javax.sip.SipException
All known Subclasses: javax.sip.TransactionDoesNotExistException, javax.sip.header.TooManyHopsException, javax.sip.PeerUnavailableException, javax.sip.TransportNotSupportedException, javax.sip.TransactionAlreadyExistsException, javax.sip.ProviderDoesNotExistException, javax.sip.DialogDoesNotExistException, javax.sip.ObjectInUseException, javax.sip.TransactionUnavailableException, javax.sip.TransportAlreadySupportedException,
SipException | public class SipException extends Exception (Code) | | A SipException is thrown when a general SIP exception is encountered, when
no other specialized exception defined in this specification can handle
the error.
author: BEA Systems, NIST version: 1.2 |
Field Summary | |
protected Throwable | m_Cause The specialized cause that triggered this Exception. |
Constructor Summary | |
public | SipException() | public | SipException(String message) Constructs a new SipException with the specified error
message. | public | SipException(String message, Throwable cause) Constructs a new SipException with the specified error
message and specialized cause that triggered this error condition. |
Method Summary | |
public Throwable | getCause() Returns the cause of this throwable or null if the cause is
nonexistent or unknown. |
m_Cause | protected Throwable m_Cause(Code) | | The specialized cause that triggered this Exception. This cause
informs an application of the underlying implementation problem that
triggered this Exception.
|
SipException | public SipException()(Code) | | Constructs a new SipException
|
SipException | public SipException(String message)(Code) | | Constructs a new SipException with the specified error
message.
Parameters: message - the error message of this Exception. |
SipException | public SipException(String message, Throwable cause)(Code) | | Constructs a new SipException with the specified error
message and specialized cause that triggered this error condition.
Parameters: message - the detail of the error message Parameters: cause - the specialized cause that triggered this exception |
getCause | public Throwable getCause()(Code) | | Returns the cause of this throwable or null if the cause is
nonexistent or unknown. (The cause is the throwable that caused this
throwable to get thrown.) This implementation returns the cause that
was supplied via the constructor requiring a Throwable.
the cause of this throwable or null if the cause is nonexistent or unknown. |
|
|