Initializes an instance of the NotSupportedException class.
Initializes an instance of the NotSupportedException class with default properties.
[Visual Basic] Overloads Public Sub New()
[C#] public NotSupportedException();
[C++] public: NotSupportedException();
[JScript] public function NotSupportedException();
Initializes an instance of NotSupportedException with a specified message.
[Visual Basic] Overloads Public Sub New(String)
[C#] public NotSupportedException(String);
[C++] public: NotSupportedException(String*);
[JScript] public function NotSupportedException(String);
Initializes an instance of NotSupportedException with a specified message and the exception that is the root cause of this exception.
[Visual Basic] Overloads Public Sub New(String, Exception)
[C#] public NotSupportedException(String, Exception);
[C++] public: NotSupportedException(String*, Exception);
[JScript] public function NotSupportedException(String, Exception);
NotSupportedException Class | NotSupportedException Members | System Namespace