Autodesk Vault ProfessionalVault API

GetTitle Method

Autodesk.DataManagement.Client.Framework.InterfacesIExceptionParserProvider

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.String

Parameters

NameDescription
exThe 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.

See Also