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

cl.transbank.onepay.exception.RefundCreateException Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
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