Error() > Instance variables |
Numeric value indicating error severity.
Data type: | N | Default: | 0 |
The instance variable contains a numeric value representing the severity of the error. #define constants are available in Error.ch to classify the severity of a runtime error:
Severity levels of runtime errors
Constant | Value | Description |
---|---|---|
ES_WHOCARES | 0 | Just informational, not really an error |
ES_WARNING | 1 | This error is not a real error yet, but may lead to one later |
ES_ERROR | 2 | This error must be corrected immediately in an error handling routine |
ES_CATASTROPHIC | 3 | This error requires immediate termination of the application |
http://www.xHarbour.com