Determines whether or not exceptions can be raised by Tone methods. This property applies strictly to instances of Tone, not to static methods (see EnableStaticExceptions).
[C#]
public bool EnableExceptions
true
Exceptions are raised when a non-helper method encounters a fault.
false
Errors are generated in the form of method return codes, but no exceptions are raised explicitly by Tone methods. The system may raise exceptions if conditions warrant.
When this property is disabled, the most recent error message string can still be retrieved by calling the helper method ResultMessage or its static counterpart, Tone.ResultMessage. Otherwise, you can access the message string via the Exception.Message property. Helper methods do not explicitly raise exceptions.