
com.indix.exception.PaymentRequiredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apiv2-java-client Show documentation
Show all versions of apiv2-java-client Show documentation
Java client which is used to access API V2 endpoints
The newest version!
package com.indix.exception;
import org.apache.http.HttpStatus;
/**
* Indix exception corresponding to HTTP 402 error code
*/
public class PaymentRequiredException extends IndixApiException {
public PaymentRequiredException() {
super();
}
public PaymentRequiredException(String message) {
super(HttpStatus.SC_PAYMENT_REQUIRED, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy