Java package extends the Java exception concept with error handling functions; two Java interfaces
define the necessary methods.See: Description
| Interface | Description |
|---|---|
| IError |
This
Java interface defines an error in a specific 'module' of the SAP CC software;
An error is identified uniquely thanks to a module name and a numeric code. |
| IErrorException |
This
Java interface extends the exception concept and the default Java exception mechanisms;
It provides error management features associated to the exceptions: cause error of the exception,
related errors in stack. |
| Enum | Description |
|---|---|
| IError.ErrorType |
This
enumeration defines the available types or errors, which can be:
Permanent error: this error is permanent; it will lead to a failure each time the process is called
Temporary error: this error is temporary; the process has to be called again later
Correction expected: this error is temporary; but will lead to a failure until correction has not been applied
|
| Exception | Description |
|---|---|
| ErrorException |
This
abstract Java class defines an exception that includes an error. |
| ErrorRuntimeException |
This
abstract Java class defines an error runtime exception that includes an error. |
Java package extends the Java exception concept with error handling functions; two Java interfaces
define the necessary methods.