📄 queryexception.java
字号:
/*
* Created on 2004-9-29
* Author: Xuefeng, Copyright (C) 2004, Xuefeng.
*/
package org.crystalblog.exception;
/**
* QueryException is thrown when a query failed: not found, access forbidden, database error, etc.
*
* @author Xuefeng
*/
public class QueryException extends RuntimeException {
public QueryException() {}
public QueryException(String msg) {
super(msg);
}
public QueryException(Throwable throwable) {
super(throwable);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -