123456789101112131415161718192021222324252627282930313233 |
- package com.beifan.foxlibc.framework.exception;
- import lombok.extern.slf4j.Slf4j;
- /**
- * 业务异常
- *
- * @author lts
- * Create Time 2022/6/30
- */
- @Slf4j
- public class BusinessException extends SystemException {
- public BusinessException() {
- }
- public BusinessException(String message) {
- super(message);
- }
- public BusinessException(String message, Throwable cause) {
- super(message, cause);
- }
- public BusinessException(Throwable cause) {
- super(cause);
- }
- public BusinessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
- super(message, cause, enableSuppression, writableStackTrace);
- }
- }
|