package com.monkeylessey.exception; /** * @author 29443 * @version 1.0 * @date 2022/4/25 */ public class FileFormatNotSupport extends BaseException { private String suffix; public FileFormatNotSupport(String msg, Throwable cause) { super(msg, cause); } public FileFormatNotSupport(String msg) { super(msg); } public FileFormatNotSupport(String msg, String suffix) { super(msg); this.suffix = suffix; } public FileFormatNotSupport(String msg, Integer code) { super(msg, code); } public String getSuffix() { return suffix; } }