C# Class Encog.EncogError

The base Encog error from which all other errors are build.
Inheritance: System.Exception
Mostrar archivo Open project: encog/encog-silverlight-core

Public Methods

Method Description
EncogError ( Exception e ) : System

Pass on an exception.

EncogError ( String str ) : System

Construct a message exception.

EncogError ( String msg, Exception e ) : System

Pass on an exception.

Method Details

EncogError() public method

Pass on an exception.
public EncogError ( Exception e ) : System
e System.Exception The other exception.
return System

EncogError() public method

Construct a message exception.
public EncogError ( String str ) : System
str String The message.
return System

EncogError() public method

Pass on an exception.
public EncogError ( String msg, Exception e ) : System
msg String The message.
e System.Exception The exception.
return System