mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
27 lines
671 B
Java
27 lines
671 B
Java
package im.zhaojun.zfile.exception;
|
|
|
|
/**
|
|
* 未启用的驱动器异常
|
|
*/
|
|
public class NotEnabledDriveException extends RuntimeException {
|
|
|
|
public NotEnabledDriveException() {
|
|
}
|
|
|
|
public NotEnabledDriveException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public NotEnabledDriveException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public NotEnabledDriveException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public NotEnabledDriveException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
|
|
} |