abrirpuertoservidorexception.java
来自「java 实现的P2P Chord算法。chord算法是结构式的P2P搜索与管理」· Java 代码 · 共 32 行
JAVA
32 行
/* * AbrirPuertoServidorException.java * * Created on 14 de febrero de 2005, 18:14 */package org.mikel.jchord.red;/** * * @author mikel */public class AbrirPuertoServidorException extends java.net.BindException { /** * Creates a new instance of <code>AbrirPuertoServidorException</code> without detail message. */ public AbrirPuertoServidorException() { } /** * Constructs an instance of <code>AbrirPuertoServidorException</code> with the specified detail message. * @param msg the detail message. */ public AbrirPuertoServidorException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?