diff options
Diffstat (limited to 'eaaf_core_api/checks/spotbugs-exclude.xml')
-rw-r--r-- | eaaf_core_api/checks/spotbugs-exclude.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/eaaf_core_api/checks/spotbugs-exclude.xml b/eaaf_core_api/checks/spotbugs-exclude.xml index 1c4cf203..acc5bd3f 100644 --- a/eaaf_core_api/checks/spotbugs-exclude.xml +++ b/eaaf_core_api/checks/spotbugs-exclude.xml @@ -9,4 +9,18 @@ <Bug pattern="JACKSON_UNSAFE_DESERIALIZATION" /> </OR> </Match> -</FindBugsFilter>
\ No newline at end of file + <Match> + <!-- These exceptions forward internal errors by design --> + <OR> + <Class name="at.gv.egiz.eaaf.core.api.data.ExceptionContainer" /> + <Class name="at.gv.egiz.eaaf.core.exceptions.AuthnRequestValidatorException" /> + <Class name="at.gv.egiz.eaaf.core.exceptions.PendingReqIdValidationException" /> + <Class name="at.gv.egiz.eaaf.core.exceptions.TaskExecutionException" /> + <Class name="at.gv.egiz.eaaf.core.exceptions.XPathException" /> + </OR> + <OR> + <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP2" /> + </OR> + </Match> +</FindBugsFilter> |