⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 publishexception.java

📁 beginJsp2.0外文书籍源代码
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -