entitynotfoundexception.java
来自「beginJsp2.0外文书籍源代码」· Java 代码 · 共 18 行
JAVA
18 行
package com.wrox.publish.db;import com.wrox.publish.PublishException;/** * Exception thrown when an entity could not be found in the database. */public class EntityNotFoundException extends PublishException { /** * Constructs a new <code>EntityNotFoundException</code> with * the given message. * @param msg The detail message. */ public EntityNotFoundException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?