Blame view

src/main/java/zteits/rocketmq/spring/starter/exception/ConvertMsgException.java 624 Bytes
4250eff7   王彪总   1.master1.1.1
1
  package zteits.rocketmq.spring.starter.exception;
d54dea82   zhaowg   消息消费失败后发送MQ
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
  public class ConvertMsgException extends RuntimeException{
  
  	private static final long serialVersionUID = 1L;
  
  	public ConvertMsgException() {
  		super();
  	}
  
  	public ConvertMsgException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
  		super(message, cause, enableSuppression, writableStackTrace);
  	}
  
  	public ConvertMsgException(String message, Throwable cause) {
  		super(message, cause);
  	}
  
  	public ConvertMsgException(String message) {
  		super(message);
  	}
  
  	public ConvertMsgException(Throwable cause) {
  		super(cause);
  	}
4250eff7   王彪总   1.master1.1.1
26
  
d54dea82   zhaowg   消息消费失败后发送MQ
27
  }