/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.exceptions; public class EAAFProtocolException extends EAAFException { private static final long serialVersionUID = 7982298114399440473L; public EAAFProtocolException(String msg) { super(msg); } public EAAFProtocolException(String msg, Throwable e) { super(msg, e); } public EAAFProtocolException(String errorId, Object[] params, String msg) { super(errorId, params, msg); } public EAAFProtocolException(String errorId, Object[] params, String msg, Throwable e) { super(errorId, params, msg, e); } }