SeverityLevel represents the severity level of an RPMException. It determines the behavior and result of the operation that raised the RPMException
State Summary | |
Information
Indicates a situation that is normal but worth a notification. |
|
Warning
Indicates a situation that is abnormal but not sufficient to make the operation fail. For instance, when the object being loaded refers to an object that no longer exists, in this case, the reference will be set to null and a warning will be added to the list. |
|
Error
Indicates an error situation that will cause the operation to fail. For instance, many such errors can accumulate during the validation phase. |
|
SevereError
Indicates a severe error situation that will cause the operation to fail and terminate immediately. Hence, if such an error occurs, of the error list, the error should be the last one to appear. |
|
CriticalError
Indicates a critical error situation that will cause the operation to fail and terminate immediately. Hence, if such an error occurs, of the error list, the error should be the last one to appear. |
|
FatalError
Indicates a fatal (unrecoverable) error situation that will cause the Web service to stop. The caller might not even receive this error. |