package at.gv.egiz.eaaf.modules.auth.sl20.exceptions; import at.gv.egiz.eaaf.core.exceptions.EAAFAuthenticationException; public class SL20Exception extends EAAFAuthenticationException { private static final long serialVersionUID = 1L; public SL20Exception(String messageId, Object[] parameters) { super(messageId, parameters); } public SL20Exception(String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped); } }