unsupportedconversionexception.java
来自「大家好啊 快来抢购J2ME东东 挺不错的啊 不要后悔啊 抓住机会」· Java 代码 · 共 17 行
JAVA
17 行
package com.ora.jsp.sql;
/**
* This exception is thrown when trying to call a get method on an
* instance of a Value subclass with a return type that's not supported
* for the data type represented by the subclass.
*
* @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
* @version 1.0
*/
public class UnsupportedConversionException extends Exception {
public UnsupportedConversionException(String message) {
super(message);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?