cl.transbank.onepay.exception.RefundCreateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transbank-sdk-java Show documentation
Show all versions of transbank-sdk-java Show documentation
Tranbank API integration SDK for Java Projects
package cl.transbank.onepay.exception;
import cl.transbank.exception.TransbankException;
public class RefundCreateException extends TransbankException {
public RefundCreateException() {
}
public RefundCreateException(String message) {
super(message);
}
public RefundCreateException(int code, String message) {
super(code, message);
}
public RefundCreateException(int code, String message, Throwable cause) {
super(code, message, cause);
}
public RefundCreateException(Throwable cause) {
super(cause);
}
public RefundCreateException(int code, Throwable cause) {
super(code, cause);
}
public RefundCreateException(int code, String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(code, message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy