UtilException.java 485 B

1234567891011121314151617181920212223242526
  1. package com.ruoyi.common.exception;
  2. /**
  3. * 工具类异常
  4. *
  5. * @author ruoyi
  6. */
  7. public class UtilException extends RuntimeException
  8. {
  9. private static final long serialVersionUID = 8247610319171014183L;
  10. public UtilException(Throwable e)
  11. {
  12. super(e.getMessage(), e);
  13. }
  14. public UtilException(String message)
  15. {
  16. super(message);
  17. }
  18. public UtilException(String message, Throwable throwable)
  19. {
  20. super(message, throwable);
  21. }
  22. }