Class NotFoundExceptionMapper

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

    public class NotFoundExceptionMapper
    extends Object
    implements javax.ws.rs.ext.ExceptionMapper<javax.ws.rs.NotFoundException>
    An ExceptionMapper for the exception produced by JAX-RS when no match could be found for an incoming request.

    If no special flags are set, this mapper returns an error response similar to that produced by other V2 codepaths.

    If the RequestContextKeys.SUPPRESS_ERROR_ON_NOT_FOUND_EXCEPTION flag is present, we suppress the error response and merely set a flag indicating the lack of matching resource. This is done in service of fielding requests whose resource might be registered in one of multiple JAX-RS applications. See V2HttpCall's "executeCoreRequest" method for more details.

    • Field Detail

      • resourceContext

        @Context
        public javax.ws.rs.container.ResourceContext resourceContext
    • Constructor Detail

      • NotFoundExceptionMapper

        public NotFoundExceptionMapper()
    • Method Detail

      • toResponse

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