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

cloud.agileframework.mvc.exception.AbstractCustomException Maven / Gradle / Ivy

package cloud.agileframework.mvc.exception;

/**
 * @author 佟盟 on 2018/11/6
 */
public abstract class AbstractCustomException extends Exception {
    private final String[] params;

    protected AbstractCustomException(String... params) {
        this.params = params;
    }

    public String[] getParams() {
        return params.clone();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy