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