Class RestControllerExceptionHandler
java.lang.Object
com.aquima.web.rest.v1.controller.RestControllerExceptionHandler
@RestApiContext
@ControllerAdvice(basePackages="com.aquima.web.rest.v1.controller")
public class RestControllerExceptionHandler
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionhandleInconsistentRequestParameters
(InvalidParameterException invalidParameterException) handleResourceNotFound
(ResourceNotFoundException resourceNotFoundException) handleServerError
(RestException restException) handleUnauthorizedUserException
(UnauthorizedUserException unauthorizedUserException)
-
Constructor Details
-
RestControllerExceptionHandler
public RestControllerExceptionHandler()
-
-
Method Details
-
handleInconsistentRequestParameters
@ExceptionHandler(InvalidParameterException.class) @ResponseStatus(BAD_REQUEST) @ResponseBody public ErrorMessage handleInconsistentRequestParameters(InvalidParameterException invalidParameterException) -
handleResourceNotFound
@ExceptionHandler(ResourceNotFoundException.class) @ResponseStatus(NOT_FOUND) @ResponseBody public ErrorMessage handleResourceNotFound(ResourceNotFoundException resourceNotFoundException) -
handleServerError
@ExceptionHandler(RestException.class) @ResponseStatus(INTERNAL_SERVER_ERROR) @ResponseBody public ErrorMessage handleServerError(RestException restException) -
handleUnauthorizedUserException
@ExceptionHandler(UnauthorizedUserException.class) @ResponseStatus(UNAUTHORIZED) @ResponseBody public ErrorMessage handleUnauthorizedUserException(UnauthorizedUserException unauthorizedUserException)
-