Exception that gets thrown when you try to get a reference to a browser that does not exist.
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public class NoSuchBrowserException :  VrmlException,
ISerializable,
_Exception
Collapse/Expand Remarks
This exception gets thrown by the methods of the BrowserFactory class when they are not able to find the browser you specified when calling the methods.
Collapse/Expand Members

Click here to see the list of members.

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