📄 fieldnotfoundexception.java
字号:
package org.ephman.abra.tools; /** An exception representing a lookup for a field returning null * * @author Paul M. Bethe * @version 0.0.1 (11/3/00) */public class FieldNotFoundException extends org.ephman.abra.utils.AbraException { /* * This provides the same functionality to SQLException * @param error Error string (in resource bundle.. */ public FieldNotFoundException(String error) { super(error); } /* * A more generic entry point. * @param error Error string or standard message id * @param args Array of arguments */ public FieldNotFoundException(String error, Object[] args) { super(error, args); } /* * Helper version for 1 arg */ public FieldNotFoundException(String error, Object arg) { super(error, arg); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -