mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
27 lines
648 B
Java
27 lines
648 B
Java
package im.zhaojun.common.exception;
|
|
|
|
/**
|
|
* @author zhaojun
|
|
*/
|
|
public class SearchDisableException extends RuntimeException {
|
|
|
|
public SearchDisableException() {
|
|
}
|
|
|
|
public SearchDisableException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public SearchDisableException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public SearchDisableException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public SearchDisableException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|