共用方式為


HttpParseException 建構函式

定義

初始化 HttpParseException 類別的新執行個體。

多載

HttpParseException()

初始化 HttpParseException 類別的新執行個體。

HttpParseException(String)

使用指定的錯誤訊息,初始化 HttpParseException 類別的新執行個體。

HttpParseException(String, Exception)

使用指定的錯誤訊息和對內部的參考,初始化 HttpParseException 類別的新執行個體。

HttpParseException(String, Exception, String, String, Int32)

使用正在編譯的原始程式碼和發生例外狀況的行號之特定資訊,初始化 HttpParseException 類別的新執行個體。

HttpParseException()

初始化 HttpParseException 類別的新執行個體。

public:
 HttpParseException();
public HttpParseException ();
Public Sub New ()

適用於

HttpParseException(String)

使用指定的錯誤訊息,初始化 HttpParseException 類別的新執行個體。

public:
 HttpParseException(System::String ^ message);
public HttpParseException (string message);
new System.Web.HttpParseException : string -> System.Web.HttpParseException
Public Sub New (message As String)

參數

message
String

錯誤發生時所要指定的例外狀況訊息。

範例

下列範例示範建構函式的使用 HttpException 方式。 如需完整的運作程式碼範例,請參閱 HttpParseException 概觀主題。

throw new HttpParseException("This custom HtmlSelect control" +                                                  "requires child elements of the form \"MyCustomOption\"");
Throw New HttpParseException("This custom HtmlSelect control" & _ 
         "requires child elements of the form ""MyCustomOption""")

適用於

HttpParseException(String, Exception)

使用指定的錯誤訊息和對內部的參考,初始化 HttpParseException 類別的新執行個體。

public:
 HttpParseException(System::String ^ message, Exception ^ innerException);
public HttpParseException (string message, Exception innerException);
new System.Web.HttpParseException : string * Exception -> System.Web.HttpParseException
Public Sub New (message As String, innerException As Exception)

參數

message
String

錯誤發生時所要指定的例外狀況訊息。

innerException
Exception

做為目前例外狀況發生原因的例外狀況。 如果 innerException 參數不是 null,則目前的例外狀況會在處理內部例外的 catch 區塊中引發。

適用於

HttpParseException(String, Exception, String, String, Int32)

使用正在編譯的原始程式碼和發生例外狀況的行號之特定資訊,初始化 HttpParseException 類別的新執行個體。

public:
 HttpParseException(System::String ^ message, Exception ^ innerException, System::String ^ virtualPath, System::String ^ sourceCode, int line);
public HttpParseException (string message, Exception innerException, string virtualPath, string sourceCode, int line);
new System.Web.HttpParseException : string * Exception * string * string * int -> System.Web.HttpParseException
Public Sub New (message As String, innerException As Exception, virtualPath As String, sourceCode As String, line As Integer)

參數

message
String

錯誤發生時所要指定的例外狀況訊息。

innerException
Exception

做為目前例外狀況發生原因的例外狀況。 如果 innerException 不是 null,則目前的例外狀況會在處理內部例外狀況的 catch 區塊中引發。

virtualPath
String

例外狀況的虛擬路徑。

sourceCode
String

例外狀況發生時正在編譯的來源程式碼。

line
Int32

發生例外狀況的行號。

適用於