C# Class SipSharp.SipException

Exception which can be sent back to client.
Inheritance: System.Exception
ファイルを表示 Open project: jgauffin/SipSharp

Public Methods

Method Description
SipException ( StatusCode code, string errMsg ) : System

Initializes a new instance of the SipException class.

SipException ( StatusCode code, string errMsg, Exception inner ) : System

Initializes a new instance of the SipException class.

Method Details

SipException() public method

Initializes a new instance of the SipException class.
public SipException ( StatusCode code, string errMsg ) : System
code StatusCode SIP status code.
errMsg string Why exception was thrown.
return System

SipException() public method

Initializes a new instance of the SipException class.
public SipException ( StatusCode code, string errMsg, Exception inner ) : System
code StatusCode SIP status code.
errMsg string Why exception was thrown.
inner System.Exception Inner exception.
return System