ParseErrorException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.