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

x7.core.exception.BizException Maven / Gradle / Ivy

There is a newer version: 2.2.7.RELEASE
Show newest version
package x7.core.exception;

/**
 * Created by Sim on 2018/6/22.
 */
public class BizException extends RuntimeException {

    private String message;

    public BizException(){

    }

    public BizException(String message){
        this.message = message;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy