/* * Created on 21.02.2004 * */ package multimonster.mediaproxy.exceptions; /** * @author J�rg Meier * */ public class MediaProxyPlugInException extends MediaProxyException { /** * */ public MediaProxyPlugInException() { super(); // TODO Auto-generated constructor stub } /** * @param message */ public MediaProxyPlugInException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public MediaProxyPlugInException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } /** * @param cause */ public MediaProxyPlugInException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }