com.cybersource.flex.sdk.exception.FlexApiServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flex-server-sdk Show documentation
Show all versions of flex-server-sdk Show documentation
CyberSource Flex API Server Side SDK
/**
* Copyright (c) 2017 by CyberSource
*/
package com.cybersource.flex.sdk.exception;
import com.cybersource.flex.sdk.model.FlexErrorResponse;
public class FlexApiServerException extends FlexApiException {
public FlexApiServerException(int status, FlexErrorResponse flexErrorResponse, String vcCorrelationId) {
super(status, flexErrorResponse, vcCorrelationId);
}
}