Ancestor of all Exception thrown by the EAI.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class VrmlException :  ApplicationException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets never thrown directly. By specifying this Exception in a catch clause, you can handle all EAI Exceptions regardless of their type.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to catch all EAI exceptions and print an error message to the console:
C#
try
{
    ...
}
catch (Vrml.EAI.VrmlException ex)
{
    System.Console.WriteLine(ex);
}