C# Class Sgml.SgmlParseException

Thrown if any errors occur while parsing the source.
Inheritance: System.Exception
Show file Open project: Synergex/Baconography

Public Methods

Method Description
SgmlParseException ( ) : System

Instantiates a new instance of SgmlParseException with no specific error information.

SgmlParseException ( string message ) : System

Instantiates a new instance of SgmlParseException with an error message describing the problem.

SgmlParseException ( string message, Entity e ) : System

Instantiates a new instance of SgmlParseException with an error message describing the problem.

SgmlParseException ( string message, Exception innerException ) : System

Instantiates a new instance of SgmlParseException with an error message describing the problem.

Method Details

SgmlParseException() public method

Instantiates a new instance of SgmlParseException with no specific error information.
public SgmlParseException ( ) : System
return System

SgmlParseException() public method

Instantiates a new instance of SgmlParseException with an error message describing the problem.
public SgmlParseException ( string message ) : System
message string A message describing the error that occurred
return System

SgmlParseException() public method

Instantiates a new instance of SgmlParseException with an error message describing the problem.
public SgmlParseException ( string message, Entity e ) : System
message string A message describing the error that occurred
e Entity The entity on which the error occurred.
return System

SgmlParseException() public method

Instantiates a new instance of SgmlParseException with an error message describing the problem.
public SgmlParseException ( string message, Exception innerException ) : System
message string A message describing the error that occurred
innerException System.Exception The original exception that caused the problem.
return System