jremconnectorexception.java
来自「JRemoteControl is a simple Java™ dr」· Java 代码 · 共 47 行
JAVA
47 行
/* * JRemCntl - Copyright (C) 2007 Filippo Di Vattimo <fildiv@gmail.com> * See COPYING */package fildiv.jremcntl.common.core;public class JRemConnectorException extends Exception { public Throwable nested; public JRemConnectorException() { super(); } public JRemConnectorException(String msg) { super(msg); } public JRemConnectorException(String msg, Throwable nested) { super(msg); this.nested = nested; } public JRemConnectorException(Throwable nested) { this.nested = nested; } public Throwable getNestedException() { return nested; } public String toString() { StringBuffer sb = new StringBuffer(); if (getMessage() != null) sb.append(getMessage()); if (nested != null) { sb.append("\n" + nested); } return sb.toString(); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?