You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
640 B
29 lines
640 B
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); |
|
} |
|
}
|
|
|