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

com.stripe.exception.InvalidRequestException Maven / Gradle / Ivy

There is a newer version: 28.2.0
Show newest version
package com.stripe.exception;

public class InvalidRequestException extends StripeException {

	private static final long serialVersionUID = 1L;

	private final String param;

	public InvalidRequestException(String message, String param, String requestId, Integer statusCode, Throwable e) {
		super(message, requestId, statusCode, e);
		this.param = param;
	}

	public String getParam() {
		return param;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy