package at.asitplus.eidas.specific.modules.msproxyservice.exception; import at.gv.egiz.eaaf.core.exceptions.EaafException; public class EidasProxyServiceException extends EaafException { private static final long serialVersionUID = 1L; public EidasProxyServiceException(String errorId, Object[] params) { super(errorId, params); } public EidasProxyServiceException(String errorId, Object[] params, Throwable e) { super(errorId, params, e); } }