Share via


ParseErrorException Constructors

Definition

Overloads

ParseErrorException()

Creates a new instance of the ParseErrorException class.

ParseErrorException(String)

Creates a new instance of the ParseErrorException class from a message.

ParseErrorException(String, Exception)

Creates a new instance of the ParseErrorException class from a message and previous exception.

ParseErrorException()

Creates a new instance of the ParseErrorException class.

public ParseErrorException();
Public Sub New ()

Applies to

ParseErrorException(String)

Creates a new instance of the ParseErrorException class from a message.

public ParseErrorException(string message);
new Microsoft.Spatial.ParseErrorException : string -> Microsoft.Spatial.ParseErrorException
Public Sub New (message As String)

Parameters

message
String

The message about the exception.

Applies to

ParseErrorException(String, Exception)

Creates a new instance of the ParseErrorException class from a message and previous exception.

public ParseErrorException(string message, Exception innerException);
new Microsoft.Spatial.ParseErrorException : string * Exception -> Microsoft.Spatial.ParseErrorException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message about the exception.

innerException
Exception

The exception that preceded this one.

Applies to