suppress warning squid:S2221
Signed-off-by: Michael Hirsch <michael.hirsch@bosch-si.com>
This commit is contained in:
@@ -101,7 +101,9 @@ public class SystemSecurityContext {
|
|||||||
try {
|
try {
|
||||||
setSystemContext(SecurityContextHolder.getContext());
|
setSystemContext(SecurityContextHolder.getContext());
|
||||||
return callable.call();
|
return callable.call();
|
||||||
} catch (final Exception e) {
|
// The callable API throws a Exception and not a specific
|
||||||
|
// one
|
||||||
|
} catch (@SuppressWarnings("squid:S2221") final Exception e) {
|
||||||
throw Throwables.propagate(e);
|
throw Throwables.propagate(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user