package org.jeecg.modules.arj.exception; import lombok.Data; @Data public class CMSException extends RuntimeException { private Integer code; public CMSException(Integer code, String message) { super(message); this.code = code; } public CMSException() { } @Override public String toString() { return "CMSException{" + "code=" + code + ", message=" + this.getMessage() + '}'; } }