Exception that gets thrown when you specify an invalid URL.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class InvalidURLException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets thrown when you call either Browser.LoadURL or Browser.CreateVrmlFromURL with an URL that is malformed.
Collapse/Expand Members

Click here to see the list of members.

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