/* * LlamadaRemotaException.java * * Created on 1 de febrero de 2005, 15:15 */ package org.mikel.jchord.red; /** * * @author mikel */ public class LlamadaRemotaException extends java.lang.Exception { /** * Creates a new instance of LlamadaRemotaException without detail message. */ public LlamadaRemotaException() { } /** * Constructs an instance of LlamadaRemotaException with the specified detail message. * @param msg the detail message. */ public LlamadaRemotaException(String msg) { super(msg); } }