Exception that gets thrown when you try to get an unknown
event-in or event-out slot from a node.
C# |
---|
public class InvalidFieldException : |
VrmlException, ISerializable,
_Exception
|
|
Click here to see the list of members.
The following example demonstrates how to catch all
InvalidFieldExceptions and print an error message to the
console:
C# |
---|
try
{
...
}
catch (Vrml.EAI.Field.InvalidFieldException ex)
{
System.Console.WriteLine(ex);
}
|