com.highdeal.hci
Class OperationFailureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.highdeal.hci.OperationFailureException
All Implemented Interfaces:
OperationResult, XMLMarshallable, java.io.Serializable
Direct Known Subclasses:
AcquisitionException, ActivateException, AlreadyExistException, AuthenticationFailedException, BadMessageFormatException, BadTargetException, BatchChargeException, CannotInverseException, CleanupException, ConstraintViolationException, DefaultHCIException, DisabledFeatureException, DoesNotExistException, ExpirationAlertException, ExportableItemMappingException, FetchClientStatisticsException, ForbiddenChargeException, IncompatibleOperationException, IndicatorPersistentAccessException, InvalidBulkModificationException, InvalidCreationException, InvalidDeletionException, InvalidExportException, InvalidHolidayException, InvalidImportException, InvalidInstanceException, InvalidItemException, InvalidModificationException, InvalidParameterValueException, InvalidPasswordException, InvalidSearchException, InvalidTaxException, NoTargetDefinedException, NotAuthorizedException, OperationCanceledException, OperationFailureErrorException, ParameterConcurrentAccessException, PostRateException, PreRateException, PurgeAllowanceException, RerateBulkException, RerateSubscriptionException, RetryableDatabaseException, ServerFailureException, SessionOperationException, StartRateException, StatelessPreRatingException, StatelessRateException, StopRateException, TransactionClearingException, UnknownParameterException, UnlockChargingContractException, UnlockSubscriptionException, UpdateRateException

public abstract class OperationFailureException
extends java.lang.Exception
implements OperationResult

This abstract Java class represents the root exception for all the HCI operation exceptions; Consider the known subclasses detailed in this page and the OperationFailureErrorException marshallable exception to design your implementation and its error handling.

Implementation in Your Client Application

Consider the known subclasses that represent an HCI operation exception; They are listed in this page.

Example

AuthenticationFailedException

See Also:
Serialized Form

Constructor Summary
OperationFailureException()
           
OperationFailureException(java.lang.String message)
           
OperationFailureException(java.lang.String message, java.lang.Throwable throwable)
           
 
Method Summary
 java.lang.String getOperandReference()
          Gets the code or the reference (if no code exists) that identifies the operand of the operation request; If the operation is not auditable, the operand reference is null.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.highdeal.hci.XMLMarshallable
addCharacterData, addChild, marshal, setAttributes
 

Constructor Detail

OperationFailureException

public OperationFailureException()

OperationFailureException

public OperationFailureException(java.lang.String message)

OperationFailureException

public OperationFailureException(java.lang.String message,
                                 java.lang.Throwable throwable)
Method Detail

getOperandReference

public java.lang.String getOperandReference()
Description copied from interface: OperationResult
Gets the code or the reference (if no code exists) that identifies the operand of the operation request; If the operation is not auditable, the operand reference is null.

Specified by:
getOperandReference in interface OperationResult
Returns:
The operand reference of the operation result

Document Published: October 2015 (SAP CC 4.0 SP10 and Later)