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