Exception that gets thrown when you use a
Node object that
is not valid.
C# |
---|
public class InvalidNodeException : |
VrmlException, ISerializable,
_Exception
|
|
Click here to see the list of members.
The following example demonstrates how to catch an
InvalidNodeException and print an error message to the
console:
C# |
---|
try
{
...
}
catch (Vrml.EAI.InvalidNodeException ex)
{
System.Console.WriteLine(ex);
}
|