Class RestExceptionHandler

  • All Implemented Interfaces:
    javax.ws.rs.ext.ExceptionMapper<RestException>

    @Provider
    public class RestExceptionHandler
    extends Object
    implements javax.ws.rs.ext.ExceptionMapper<RestException>
    Translates RestExceptions to error responses according to the status that is set in the exception. Response content format: {"type" : "ExceptionType", "message" : "some exception message"}
    Author:
    Thorben Lindhauer
    • Constructor Detail

      • RestExceptionHandler

        public RestExceptionHandler()
    • Method Detail

      • toResponse

        public javax.ws.rs.core.Response toResponse​(RestException exception)
        Specified by:
        toResponse in interface javax.ws.rs.ext.ExceptionMapper<RestException>