/* * 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 AbrirPuertoServidorException without detail message. */ public AbrirPuertoServidorException() { } /** * Constructs an instance of AbrirPuertoServidorException with the specified detail message. * @param msg the detail message. */ public AbrirPuertoServidorException(String msg) { super(msg); } }