1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.walker.push;
|
| import com.walker.infrastructure.ApplicationException;
|
| /**
| * 推送异常定义。
| * @author 时克英
| * @date 2023-04-21
| */
| public class PushException extends ApplicationException {
|
| public PushException(String messageId, String msg, Throwable caution){
| super(msg, caution);
| this.messageId = messageId;
| }
|
| public String getMessageId() {
| return messageId;
| }
|
| private String messageId;
| }
|
|