C# Class SharpNeat.SharpNeatException

General purpose exception class for use within SharpNeat.
Inheritance: System.ApplicationException
Mostra file Open project: colgreen/sharpneat

Public Methods

Method Description
SharpNeatException ( ) : System

Initializes a new instance of the SharpNeatException class.

SharpNeatException ( string message ) : System

Initializes a new instance of the SharpNeatException class with a specified error message.

SharpNeatException ( string message, System innerException ) : System

Initializes a new instance of the SharpNeatException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Method Details

SharpNeatException() public method

Initializes a new instance of the SharpNeatException class.
public SharpNeatException ( ) : System
return System

SharpNeatException() public method

Initializes a new instance of the SharpNeatException class with a specified error message.
public SharpNeatException ( string message ) : System
message string
return System

SharpNeatException() public method

Initializes a new instance of the SharpNeatException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public SharpNeatException ( string message, System innerException ) : System
message string
innerException System
return System