📄 publishexception.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 + -