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

com.github.happyjiahui.z.web.exception.BusinessException Maven / Gradle / Ivy

There is a newer version: 0.1.29
Show newest version
package com.github.happyjiahui.z.web.exception;

/**
 * 业务异常
 * 
 * @author zhaojinbing
 * @version 0.1
 */
public class BusinessException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public BusinessException() {
        super();
    }

    public BusinessException(String s) {
        super(s);
    }

    public BusinessException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public BusinessException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy