com.stripe.exception.CardException Maven / Gradle / Ivy
// Generated by delombok at Fri Jan 24 09:51:02 PST 2020
package com.stripe.exception;
public class CardException extends StripeException {
private static final long serialVersionUID = 2L;
private String param;
private String declineCode;
private String charge;
/**
* Constructs a new card exception with the specified details.
*/
public CardException(String message, String requestId, String code, String param, String declineCode, String charge, Integer statusCode, Throwable e) {
super(message, requestId, code, statusCode, e);
this.param = param;
this.declineCode = declineCode;
this.charge = charge;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getParam() {
return this.param;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getDeclineCode() {
return this.declineCode;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getCharge() {
return this.charge;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy