Class ServiceRequestException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.hybris.cis.client.shared.exception.AbstractCisServiceException
-
- com.hybris.cis.client.shared.exception.AbstractCisClientException
-
- com.hybris.cis.client.shared.exception.ServiceRequestException
-
- All Implemented Interfaces:
java.io.Serializable
public class ServiceRequestException extends AbstractCisClientException
The 3rd party returned an error due to invalid or missing arguments.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceRequestException(ServiceExceptionDetail errorCode)Instantiates a new cis service exception.ServiceRequestException(ServiceExceptionDetail errorCode, java.lang.Throwable cause)Instantiates a new cis service exception.ServiceRequestException(java.util.List<ServiceExceptionDetail> errorCodes)Instantiates a new cis service exception.ServiceRequestException(java.util.List<ServiceExceptionDetail> errorCodes, java.lang.Throwable cause)Instantiates a new cis service exception.
-
Method Summary
-
Methods inherited from class com.hybris.cis.client.shared.exception.AbstractCisServiceException
getErrorCodes, getServiceId, getVendorId, setService
-
-
-
-
Constructor Detail
-
ServiceRequestException
public ServiceRequestException(ServiceExceptionDetail errorCode)
Instantiates a new cis service exception.- Parameters:
errorCode- An error code
-
ServiceRequestException
public ServiceRequestException(ServiceExceptionDetail errorCode, java.lang.Throwable cause)
Instantiates a new cis service exception.- Parameters:
errorCode- an error codecause- the root cause
-
ServiceRequestException
public ServiceRequestException(java.util.List<ServiceExceptionDetail> errorCodes)
Instantiates a new cis service exception.- Parameters:
errorCodes- One or more error codes
-
ServiceRequestException
public ServiceRequestException(java.util.List<ServiceExceptionDetail> errorCodes, java.lang.Throwable cause)
Instantiates a new cis service exception.- Parameters:
errorCodes- One or more error codescause- the root cause
-
-