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

📄 nsclientexception.java

📁 opennms得相关源码 请大家看看
💻 JAVA
字号:
package org.opennms.netmgt.poller.nsclient;/** * This object implements the internal exceptions used by the * <code>NsclientManager</code> system. *  * @author <A HREF="mailto:matt.raykowski@gmail.com">Matt Raykowski </A> */public class NsclientException extends Exception {    /**     * Constructor.     */    public NsclientException() {        super();    }    /**     * Constructor, sets the message pertaining to the exception problem.     *      * @param message     *            the message pertaining to the exception problem.     */    public NsclientException(String message) {        super(message);    }    /**     * Constructor, sets the message pertaining to the exception problem and     * the root cause exception (if applicable.)     *      * @param message     *            the message pertaining to the exception problem.     * @param cause     *            the exception that caused this exception to be generated.     */    public NsclientException(String message, Throwable cause) {        super(message, cause);    }    /**     * Constructor, sets the exception that caused this exception to be     * generated.     *      * @param cause     *            the exception that caused this exception to be generated.     */    public NsclientException(Throwable cause) {        super(cause);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -