public interface ChargeExceptionListener
Java interface specifies several onException(..) methods for handling exceptions in
the charging client of your client application;
Consider the known subinterfaces.
The method is invoked to handle possible errors due to communication failures,
erroneous arguments in the operation requests, or non business failures in the connected SAP CC system.
Consider the known subinterfaces.
CommunicationFailureException,
IllegalArgumentException,
ServerFailureException| Modifier and Type | Method and Description |
|---|---|
void |
onException(CommunicationFailureException e)
Invoked when a network issue has been detected.
|
void |
onException(java.lang.IllegalArgumentException e)
Invoked when an argument of an operation request is invalid.
|
void |
onException(ServerFailureException e)
Invoked when the rater instances in the connected SAP CC system can not handle the business operation request.
|
void onException(CommunicationFailureException e)
e - The exception to be handledvoid onException(java.lang.IllegalArgumentException e)
e - The exception to be handledvoid onException(ServerFailureException e)
e - The exception to be handled