package at.gv.egiz.eaaf.modules.auth.sl20.exceptions; public class SlCommandoParserException extends SL20Exception { private static final long serialVersionUID = 1L; public SlCommandoParserException() { super("sl20.02", null); } public SlCommandoParserException(final String msg) { super("sl20.02", new Object[] { msg }); } public SlCommandoParserException(final String msg, final Throwable e) { super("sl20.02", new Object[] { msg }, e); } }