channelexception.java
来自「JGRoups源码」· Java 代码 · 共 24 行
JAVA
24 行
// $Id: ChannelException.java,v 1.6 2005/07/17 11:38:05 chrislott Exp $package org.jgroups;/** * This class represents the super class for all exception types thrown by * JGroups. */public class ChannelException extends Exception { public ChannelException() { super(); } public ChannelException(String reason) { super(reason); } public ChannelException(String reason, Throwable cause) { super(reason, cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?