Accord.NotConnectedException.NotConnectedException C# (CSharp) Method

NotConnectedException() public method

Initializes a new instance of the NotConnectedException class.
public NotConnectedException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException System.Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
return System
        public NotConnectedException(string message, Exception innerException)
            : base(message, innerException) { }

Same methods

NotConnectedException::NotConnectedException ( ) : System
NotConnectedException::NotConnectedException ( SerializationInfo info, StreamingContext context ) : System
NotConnectedException::NotConnectedException ( string message ) : System
NotConnectedException