mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
30 lines
844 B
Java
30 lines
844 B
Java
package im.zhaojun.common.exception;
|
|
|
|
/**
|
|
* 存储策略未初始化异常
|
|
* @author zhaojun
|
|
*/
|
|
public class StorageStrategyUninitializedException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 5736940575583615661L;
|
|
|
|
public StorageStrategyUninitializedException() {
|
|
}
|
|
|
|
public StorageStrategyUninitializedException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public StorageStrategyUninitializedException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public StorageStrategyUninitializedException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public StorageStrategyUninitializedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|