Skip to content
Snippets Groups Projects

fix: Fix exception mapper naming scheme + add 400 mapper

7 files
+ 50
17
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -17,9 +17,9 @@ package org.eclipsefoundation.core.exception;
@@ -17,9 +17,9 @@ package org.eclipsefoundation.core.exception;
*
*
* @author Martin Lowe
* @author Martin Lowe
*/
*/
public class FinalUnauthorizedException extends RuntimeException {
public class FinalForbiddenException extends RuntimeException {
public FinalUnauthorizedException(String message) {
public FinalForbiddenException(String message) {
super(message);
super(message);
}
}
Loading