Ancestor of all Exception thrown by the EAI.
C# |
---|
public class VrmlException : |
ApplicationException, ISerializable,
_Exception
|
|
Click here to see the list of members.
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);
}
|