mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
Do no report errors on security exceptions.
This commit is contained in:
parent
183f472f52
commit
4c93a72072
@ -63,10 +63,16 @@ public class BaseController {
|
|||||||
return new RestErrors(ex.getErrors(), messageSource);
|
return new RestErrors(ex.getErrors(), messageSource);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(com.wisemapping.exceptions.AccessDeniedSecurityException.class)
|
@ExceptionHandler(java.lang.reflect.UndeclaredThrowableException.class)
|
||||||
@ResponseStatus(HttpStatus.BAD_REQUEST)
|
@ResponseStatus(HttpStatus.BAD_REQUEST)
|
||||||
public RestErrors handleSecurityErrors(@NotNull ValidationException ex) {
|
public RestErrors handleSecurityErrors(@NotNull ValidationException ex) {
|
||||||
return new RestErrors(ex.getErrors(), messageSource);
|
return new RestErrors(ex.getErrors(), messageSource);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ExceptionHandler(com.wisemapping.exceptions.AccessDeniedSecurityException.class)
|
||||||
|
@ResponseStatus(HttpStatus.BAD_REQUEST)
|
||||||
|
public RestErrors handleSecurity2Errors(@NotNull ValidationException ex) {
|
||||||
|
return new RestErrors(ex.getErrors(), messageSource);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user