C# Class Monobjc.Tools.Generator.Parsers.Sgml.SgmlParseException

Inheritance: System.Exception
Mostra file Open project: Monobjc/monobjc-tools

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.

Protected Methods

Method Description
SgmlParseException ( SerializationInfo streamInfo, StreamingContext streamCtx ) : System

Initializes a new instance of the SgmlParseException class with serialized data.

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

SgmlParseException() public method

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

SgmlParseException() protected method

Initializes a new instance of the SgmlParseException class with serialized data.
protected SgmlParseException ( SerializationInfo streamInfo, StreamingContext streamCtx ) : System
streamInfo System.Runtime.Serialization.SerializationInfo The object that holds the serialized object data.
streamCtx System.Runtime.Serialization.StreamingContext The contextual information about the source or destination.
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