NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ExternalException Constructor

Initializes a new instance of the ExternalException class.

Overload List

Initializes a new instance of the ExternalException class.

[Visual Basic] Overloads Public Sub New()
[C#] public ExternalException();
[C++] public: ExternalException();
[JScript] public function ExternalException();

Initializes a new instance of ExternalException with a specified message.

[Visual Basic] Overloads Public Sub New(String)
[C#] public ExternalException(String);
[C++] public: ExternalException(String*);
[JScript] public function ExternalException(String);

Initializes a new instance of ExternalException 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 ExternalException(String, Exception);
[C++] public: ExternalException(String*, Exception);
[JScript] public function ExternalException(String, Exception);

Initializes a new instance of the ExternalException class with a specified message and error code.

[Visual Basic] Overloads Public Sub New(String, Integer)
[C#] public ExternalException(String, int);
[C++] public: ExternalException(String*, int);
[JScript] public function ExternalException(String, int);

See Also

ExternalException Class | ExternalException Members | System.Runtime.InteropServices Namespace