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; }