12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package org.jim.common.exception;
- /**
- * @ClassName ImException
- * @Description Im异常类
- * @Author WChao
- * @Date 2019/6/13 3:28
- * @Version 1.0
- **/
- public class ImException extends Exception{
- /**
- * @Author WChao
- * @Description //TODO
- * @param []
- * @return
- **/
- public ImException() {
- }
- /**
- * @Author WChao
- * @Description //TODO
- * @param [message]
- * @return
- **/
- public ImException(String message) {
- super(message);
- }
- /**
- * @Author WChao
- * @Description //TODO
- * @param [message, cause]
- * @return
- **/
- public ImException(String message, Throwable cause) {
- super(message, cause);
- }
- /**
- * @Author WChao
- * @Description //TODO
- * @param [message, cause, enableSuppression, writableStackTrace]
- * @return
- **/
- public ImException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
- super(message, cause, enableSuppression, writableStackTrace);
- }
- /**
- * @Author WChao
- * @Description //TODO
- * @param [cause]
- * @return
- **/
- public ImException(Throwable cause) {
- super(cause);
- }
- }
|