package com.hx.exception; /** * 前端提示异常 * @author ChenJiaHe * @Date 2020-06-19 */ public class TipsException extends RuntimeException { private Integer code; public TipsException(String message) { super(message); } public TipsException(String message, Integer code) { super(message); this.code = code; } public TipsException(String message, Throwable cause, Integer code) { super(message, cause); this.code = code; } public TipsException(Throwable cause, Integer code) { super(cause); this.code = code; } //@Override public int getCode() { return this.code; } }