mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 22:53:02 +00:00
✨ Replace Error with Throwable (revert prev commit).
This reverts commit d218d70b8d.
This commit is contained in:
@@ -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"})))))))
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
(fn [request]
|
||||
(try
|
||||
(handler request)
|
||||
(catch Error e
|
||||
(catch Throwable e
|
||||
(on-error e request)))))
|
||||
|
||||
(def errors
|
||||
|
||||
Reference in New Issue
Block a user