ExamCloudRuntimeException.java 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package cn.com.qmth.examcloud.commons.exception;
  2. /**
  3. * 通用异常类<br>
  4. *
  5. * @author WANG
  6. */
  7. public class ExamCloudRuntimeException extends RuntimeException {
  8. /**
  9. *
  10. */
  11. private static final long serialVersionUID = 7992796744711512927L;
  12. /**
  13. * 构造函数
  14. */
  15. public ExamCloudRuntimeException() {
  16. super();
  17. }
  18. /**
  19. * 构造函数
  20. */
  21. public ExamCloudRuntimeException(String message) {
  22. super(message);
  23. }
  24. /**
  25. * 构造函数
  26. */
  27. public ExamCloudRuntimeException(String message, Throwable cause) {
  28. super(message, cause);
  29. }
  30. /**
  31. * 构造函数
  32. */
  33. public ExamCloudRuntimeException(Throwable cause) {
  34. super(cause);
  35. }
  36. /**
  37. * 构造函数
  38. */
  39. protected ExamCloudRuntimeException(String message, Throwable cause, boolean enableSuppression,
  40. boolean writableStackTrace) {
  41. super(message, cause, enableSuppression, writableStackTrace);
  42. }
  43. }