📄 unsupportedtypeexception.java
字号:
package com.ora.jsp.sql;
/**
* This exception is thrown when trying to create an instance of
* Row from a ResultSet with a column of a type that is not supported,
* e.g. a BINARY column.
*
* @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
* @version 1.0
*/
public class UnsupportedTypeException extends Exception {
public UnsupportedTypeException(String message) {
super(message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -