Support access tokens in headers (Fix #65) (#70)

This commit is contained in:
Max Dor
2018-04-02 17:26:03 +02:00
committed by GitHub
parent 91ccb75fa1
commit 5ef145212a
17 changed files with 150 additions and 32 deletions

View File

@@ -84,8 +84,8 @@ public class DefaultExceptionHandler {
return handleGeneric(request, response, e);
}
@ExceptionHandler(MatrixException.class)
public String handleGeneric(HttpServletRequest request, HttpServletResponse response, MatrixException e) {
@ExceptionHandler(HttpMatrixException.class)
public String handleGeneric(HttpServletRequest request, HttpServletResponse response, HttpMatrixException e) {
response.setStatus(e.getStatus());
return handle(request, e.getErrorCode(), e.getError());
}