com.suchtool.nicecommon.core.exception.BusinessException Maven / Gradle / Ivy
package com.suchtool.nicecommon.core.exception;
/**
* 业务异常
*/
public class BusinessException extends RuntimeException{
public BusinessException() {
super();
}
public BusinessException(Throwable cause) {
super(cause);
}
public BusinessException(String message) {
super(message);
}
public BusinessException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy