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

io.afu.common.exception.PayException Maven / Gradle / Ivy

package io.afu.common.exception;

import io.afu.common.constant.ConstantEnum;

public class PayException extends BaseException {

    private static final long serialVersionUID = 12371263791623917L;

    public PayException() {
        super();
    }

    public PayException(String message){
        super(message);
    }

    public PayException(String message, Integer code){
        super(message,code);
    }

    public PayException(ConstantEnum constantEnum){
        super(constantEnum);
    }

    public PayException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy