package com.fine.theme.icon; /** * 图标异常 * * @author vito * @since 11.0 * Created on 2023/11/6 */ public class IconException extends RuntimeException { public IconException() { } public IconException(String message) { super(message); } public IconException(String message, Throwable cause) { super(message, cause); } public IconException(Throwable cause) { super(cause); } public IconException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }