Initializes a new instance of the InvalidStateException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Initializes a new instance of the InvalidStateException class.
[Visual Basic] Public Sub New()
[C#] public InvalidStateException();
[C++] public: InvalidStateException();
[JScript] public function InvalidStateException();
Initializes a new instance of the InvalidStateException class with a specified error message.
[Visual Basic] Public Sub New(ByVal String)
[C#] public InvalidStateException(string);
[C++] public: InvalidStateException(String*);
[JScript] public function InvalidStateException(String);
Initializes a new instance of the InvalidStateException class with a specified error message and a reference to the inner exception that is the cause of this exception.
[Visual Basic] Public Sub New(ByVal String,ByVal Exception)
[C#] public InvalidStateException(string,Exception);
[C++] public: InvalidStateException(String*,Exception*);
[JScript] public function InvalidStateException(String,Exception);