package at.gv.egiz.eaaf.modules.auth.sl20.exceptions; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import at.gv.egiz.eaaf.core.exceptions.EaafAuthenticationException; public class SL20Exception extends EaafAuthenticationException { private static final long serialVersionUID = -6716465236880571576L; @JsonCreator public SL20Exception(@JsonProperty("errorId") final String messageId) { super(messageId); } public SL20Exception(final String messageId, final Object[] parameters) { super(messageId, parameters); } public SL20Exception(final String messageId, final Object[] parameters, final Throwable wrapped) { super(messageId, parameters, wrapped); } }