Class ExceptionHandler

java.lang.Object
org.camunda.bpm.engine.rest.exception.ExceptionHandler
All Implemented Interfaces:
jakarta.ws.rs.ext.ExceptionMapper<Throwable>

@Provider public class ExceptionHandler extends Object implements jakarta.ws.rs.ext.ExceptionMapper<Throwable>
Translates any Throwable to a HTTP 500 error and a JSON response. Response content format: {"type" : "ExceptionType", "message" : "some exception message"}
Author:
nico.rehwaldt
  • Constructor Details

    • ExceptionHandler

      public ExceptionHandler()
  • Method Details

    • toResponse

      public jakarta.ws.rs.core.Response toResponse(Throwable throwable)
      Specified by:
      toResponse in interface jakarta.ws.rs.ext.ExceptionMapper<Throwable>