Exception that gets thrown when you try to get a reference
to a browser that does not exist.
C# |
---|
public class NoSuchBrowserException : |
VrmlException, ISerializable,
_Exception
|
|
Click here to see the list of members.
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);
}
|