publishexception.java
来自「beginJsp2.0外文书籍源代码」· Java 代码 · 共 21 行
JAVA
21 行
package com.wrox.publish;/** The root class of all publishing application exceptions. */public abstract class PublishException extends Exception { /** * Constructs a <code>PublishException</code> with the specified message. * @param msg the detail message. */ public PublishException(String msg) { super(msg); } /** * Constructs a <code>PublishException</code> with the specified cause. * @param cause The root cause of the exception. */ public PublishException(Throwable cause) { super(cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?