Compojure-api Api Documentation

Version: 2.0.0-alpha28

compojure.api.exception

http-response-handler

(http-response-handler _ {:keys [response]} _)

reads response from ex-data :response

request-parsing-handler

(request-parsing-handler ex data req)

request-validation-handler

(request-validation-handler e data req)

Creates error response based on Schema error. The following keys are available:

:type type of the exception (::request-validation) :coercion coercion instance used :value value that was validated :in location of the value (e.g. [:request :query-params]) :schema schema to be validated against :error schema error :request raw request

response-validation-handler

(response-validation-handler e data req)

Creates error response based on a response error. The following keys are available:

:type type of the exception (::response-validation) :coercion coercion instance used :in location of the value ([:response :body]) :schema schema to be validated against :error schema error :request raw request :response raw response

safe-handler

(safe-handler e data req)

Writes :error to log with the exception message & stacktrace.

Error response only contains class of the Exception so that it won’t accidentally expose secret details.

schema-error-handler

(schema-error-handler e data req)

Creates error response based on Schema error.

with-logging

(with-logging handler)(with-logging handler log-level)

Wrap compojure-api exception-handler a function which will log the exception message and stack-trace with given log-level.