UtilException.java 493 B

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