/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.exceptions; import at.gv.egiz.eaaf.core.api.IStatusMessager; public class EAAFIllegalStateException extends EAAFException { private static final long serialVersionUID = 261484121729891927L; public EAAFIllegalStateException(Object[] params, String msg) { super(IStatusMessager.CODES_INTERNAL_ILLEGAL_STATE, params, msg); } }