BusinessException.java 711 B

123456789101112131415161718192021222324252627282930313233
  1. package com.beifan.foxlibc.framework.exception;
  2. import lombok.extern.slf4j.Slf4j;
  3. /**
  4. * 业务异常
  5. *
  6. * @author lts
  7. * Create Time 2022/6/30
  8. */
  9. @Slf4j
  10. public class BusinessException extends SystemException {
  11. public BusinessException() {
  12. }
  13. public BusinessException(String message) {
  14. super(message);
  15. }
  16. public BusinessException(String message, Throwable cause) {
  17. super(message, cause);
  18. }
  19. public BusinessException(Throwable cause) {
  20. super(cause);
  21. }
  22. public BusinessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
  23. super(message, cause, enableSuppression, writableStackTrace);
  24. }
  25. }