Uses of Class
org.kiwiproject.jaxrs.exception.JaxrsException
Packages that use JaxrsException
-
Uses of JaxrsException in org.kiwiproject.jaxrs.exception
Subclasses of JaxrsException in org.kiwiproject.jaxrs.exceptionModifier and TypeClassDescriptionclassException representing a 400 Bad Request that extendsJaxrsExceptionto use Kiwi'sErrorMessage.classException representing a 409 Conflict that extendsJaxrsExceptionto use Kiwi'sErrorMessage.classException representing a 403 Forbidden that extendsJaxrsExceptionto use Kiwi'sErrorMessage.classException representing a 500 Internal Server Error.classException representing a 401 Unauthorized that extendsJaxrsExceptionto use Kiwi'sErrorMessage.classException representing a 404 Not Found that extendsJaxrsExceptionto use Kiwi'sErrorMessage.classException representing a 422 status code that extendsJaxrsExceptionto use Kiwi'sErrorMessage.Methods in org.kiwiproject.jaxrs.exception that return JaxrsExceptionModifier and TypeMethodDescriptionstatic JaxrsExceptionJaxrsException.buildJaxrsException(Throwable throwable) Static factory to construct a new instance from the givenThrowable.static JaxrsExceptionJaxrsExceptionMapper.toJaxrsException(int status, Map<String, Object> entity) Convert the given HTTP status code and an entity into aJaxrsException.static JaxrsExceptionJaxrsExceptionMapper.toJaxrsException(jakarta.ws.rs.core.Response response) Convert the givenResponseto aJaxrsException.Methods in org.kiwiproject.jaxrs.exception with parameters of type JaxrsExceptionModifier and TypeMethodDescriptionstatic jakarta.ws.rs.core.ResponseJaxrsExceptionMapper.buildResponse(JaxrsException exception) Convert the givenJaxrsExceptionto a JSON response.static jakarta.ws.rs.core.Response.ResponseBuilderJaxrsExceptionMapper.buildResponseBuilder(JaxrsException exception) Convert the givenJaxrsExceptionto a JSON response builder.JaxrsExceptionMapper.buildResponseEntity(JaxrsException exception) Convert the givenJaxrsExceptionto a map that can be used as a JSON response entity.jakarta.ws.rs.core.ResponseJaxrsExceptionMapper.toResponse(JaxrsException exception) Convert the givenJaxrsExceptionto a response containing a JSON entity.Constructor parameters in org.kiwiproject.jaxrs.exception with type arguments of type JaxrsExceptionModifierConstructorDescriptionJaxrsException(List<JaxrsException> exceptions) New "aggregate" instance with given list of JaxrsException objects.