Exception that gets thrown when you specify invalid VRML code.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidVrmlException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets thrown from Browser.CreateVrmlFromString when you call this method with a string that does not contain valid VRML code.
Collapse/Expand Members

Click here to see the list of members.

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