Exception that gets thrown when the network connection
            to a running X3D browser instance fails.
| C# | 
|---|
| 
| public class ConnectionException : | VrmlException, ISerializable,
 _Exception
 |  | 
 
Click here to see the list of members.
 
The following example demonstrates how to catch a
            ConnectionException and print an error message to the
            console:
            
| C# | 
|---|
| try
{
    ...
}
catch (Vrml.EAI.ConnectionException ex)
{
    System.Console.WriteLine(ex);
}
 |