GetTitle Method
Retrieves a caption to display in a dialog box for an exception. This can return a generic message like "Error", but it can also return a more detailed message like "File Access Error" where the GetMessage() would return more specific details on the error
Syntax
System.string GetTitle(
System.Exception ex
)Function GetTitle( _
ByVal ex As System.Exception _
) As System.StringParameters
| Name | Description |
|---|---|
| ex | The exception object to be parsed. |
Return Value
The caption to display in a dialog box which displays information about the exception. This should never be null or empty.