fixed exception handling for auditing interceptor

This commit is contained in:
lmds1 2014-09-24 19:09:35 -04:00
parent 8c45f32ce3
commit 88e95c1b0a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}