package com.ydtech.modules.ins.model.vo; public class FileException extends RuntimeException { private static final long serialVersionUID = 6080397780621740657L; private Integer code; public FileException(Integer code, String message) { super(message); this.code = code; } public FileException(Integer code, String message, Throwable cause) { super(message, cause); this.code = code; } public Integer getCode() { return code; } public void setCode(Integer code) { this.code = code; } }