ImException.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package org.jim.common.exception;
  2. /**
  3. * @ClassName ImException
  4. * @Description Im异常类
  5. * @Author WChao
  6. * @Date 2019/6/13 3:28
  7. * @Version 1.0
  8. **/
  9. public class ImException extends Exception{
  10. /**
  11. * @Author WChao
  12. * @Description //TODO
  13. * @param []
  14. * @return
  15. **/
  16. public ImException() {
  17. }
  18. /**
  19. * @Author WChao
  20. * @Description //TODO
  21. * @param [message]
  22. * @return
  23. **/
  24. public ImException(String message) {
  25. super(message);
  26. }
  27. /**
  28. * @Author WChao
  29. * @Description //TODO
  30. * @param [message, cause]
  31. * @return
  32. **/
  33. public ImException(String message, Throwable cause) {
  34. super(message, cause);
  35. }
  36. /**
  37. * @Author WChao
  38. * @Description //TODO
  39. * @param [message, cause, enableSuppression, writableStackTrace]
  40. * @return
  41. **/
  42. public ImException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
  43. super(message, cause, enableSuppression, writableStackTrace);
  44. }
  45. /**
  46. * @Author WChao
  47. * @Description //TODO
  48. * @param [cause]
  49. * @return
  50. **/
  51. public ImException(Throwable cause) {
  52. super(cause);
  53. }
  54. }