All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ingenico.connect.gateway.sdk.java.DeclinedPayoutException Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
package com.ingenico.connect.gateway.sdk.java;

import com.ingenico.connect.gateway.sdk.java.domain.payout.PayoutErrorResponse;
import com.ingenico.connect.gateway.sdk.java.domain.payout.definitions.PayoutResult;

/**
 * Represents an error response from a payout call.
 */
@SuppressWarnings("serial")
public class DeclinedPayoutException extends DeclinedTransactionException {

	private final PayoutErrorResponse errors;

	public DeclinedPayoutException(int statusCode, String responseBody, PayoutErrorResponse errors) {
		super(buildMessage(errors), statusCode, responseBody, errors != null ? errors.getErrorId() : null, errors != null ? errors.getErrors() : null);
		this.errors = errors;
	}

	private static String buildMessage(PayoutErrorResponse errors) {
		PayoutResult payout = errors != null ? errors.getPayoutResult() : null;
		if (payout != null) {
			return "declined payout '" + payout.getId() + "' with status '" + payout.getStatus() + "'";
		} else {
			return "the Ingenico ePayments platform returned a declined payout response";
		}
	}

	/**
	 * @return The result of creating a payout if available, otherwise returns {@code null}.
	 */
	public PayoutResult getPayoutResult() {
		return errors == null ? null : errors.getPayoutResult();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy