Message Property (FCExceptionBase)
Gets a message that describes the current exception.
Syntax
'Declaration
Public Overrides ReadOnly Property Message As String
public override string Message {get;}
Property Value
The error message that explains the reason for the exception, or an empty string("").
Remarks
FCExceptionBase will first use the custom IErrorMessageProvider that was set using the SetMessageProvider method. If no custom message provider is specified, FCExceptionBase will then call the protected GetErrorMessageFormat method which can be overridden by derived classes. This method will, by default, attempt to load a full message string from an embedded resource in the current class' assembly manifest. If none is present, then FCExceptionBase will simply return the ErrorMessageID.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server family
Reference
FCExceptionBase Class
FCExceptionBase Members
Base Implementation in Message