ParseErrorException Constructor (String, Exception)
Creates a new instance of the ParseErrorException class from a message and previous exception.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
innerException As Exception _
)
'Usage
Dim message As String
Dim innerException As Exception
Dim instance As New ParseErrorException(message, _
innerException)
public ParseErrorException(
string message,
Exception innerException
)
public:
ParseErrorException(
String^ message,
Exception^ innerException
)
new :
message:string *
innerException:Exception -> ParseErrorException
public function ParseErrorException(
message : String,
innerException : Exception
)
Parameters
- message
Type: System.String
The message about the exception.
- innerException
Type: System.Exception
The exception that preceeded this one.