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!

CustomAttributeFormatException Constructor (String)

Initializes an instance of the CustomAttributeFormatException class with the specified message.

[Visual Basic]
Overloads Public Sub New( _
   ByVal message As String _
)
[C#]
public CustomAttributeFormatException(
   string message
);
[C++]
public: CustomAttributeFormatException(
   String* message
);
[JScript]
public function CustomAttributeFormatException(
   message : String
);

Parameters

message
The message that indicates the reason this exception was thrown.

Remarks

CustomAttributeFormatException inherits from Exception. This constructor sets the properties of the Exception object as follows:

Property Value
InnerException The inner exception.
Message The message string

See Also

CustomAttributeFormatException Class | CustomAttributeFormatException Members | System.Reflection Namespace | CustomAttributeFormatException Constructor Overload List | Exception | FormatException