package at.gv.egovernment.moa.id.auth.modules.sl20_auth.exceptions; import at.gv.egovernment.moa.id.commons.api.exceptions.MOAIDException; public class SL20Exception extends MOAIDException { 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); } }