package at.gv.egiz.eaaf.modules.auth.sl20.exceptions; public class SL20SecurityException extends SL20Exception { private static final long serialVersionUID = 3281385988027147449L; public SL20SecurityException(Object[] parameters) { super("sl20.05", parameters); } public SL20SecurityException(String parameter) { super("sl20.05", new Object[] {parameter}); } public SL20SecurityException(Object[] parameters, Throwable wrapped) { super("sl20.05", parameters, wrapped); } }