fixed exception handling for auditing interceptor
This commit is contained in:
parent
8c45f32ce3
commit
88e95c1b0a
|
@ -60,7 +60,7 @@ public class AuditingInterceptor extends InterceptorAdapter {
|
|||
}
|
||||
}
|
||||
|
||||
private void store(SecurityEvent auditEvent) {
|
||||
private void store(SecurityEvent auditEvent) throws Exception {
|
||||
if(myDataStore == null) throw new InternalErrorException("No data store provided to persist audit events");
|
||||
myDataStore.store(auditEvent);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue