0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00

Replace Error with Throwable (revert prev commit).

This reverts commit d218d70b8d.
This commit is contained in:
Andrey Antukh 2021-01-26 17:14:54 +01:00
parent d218d70b8d
commit ea03477e8e
2 changed files with 3 additions and 3 deletions

View file

@ -104,14 +104,14 @@
(fn [request]
(try
(handler request)
(catch Error e
(catch Throwable e
(try
(let [cdata (errors/get-error-context request e)]
(errors/update-thread-context! cdata)
(log/errorf e "Unhandled exception: %s (id: %s)" (ex-message e) (str (:id cdata)))
{:status 500
:body "internal server error"})
(catch Error e
(catch Throwable e
(log/errorf e "Unhandled exception: %s" (ex-message e))
{:status 500
:body "internal server error"})))))))

View file

@ -111,7 +111,7 @@
(fn [request]
(try
(handler request)
(catch Error e
(catch Throwable e
(on-error e request)))))
(def errors