0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-04 11:01:20 -05:00

Improve error report on point constructor

This commit is contained in:
Andrey Antukh 2022-12-31 10:49:29 +01:00
parent 7a8b0e710b
commit d68be0869b

View file

@ -13,6 +13,7 @@
:clj [clojure.core :as c])
[app.common.data :as d]
[app.common.data.macros :as dm]
[app.common.exceptions :as ex]
[app.common.math :as mth]
[app.common.spec :as us]
[clojure.spec.alpha :as s]
@ -62,7 +63,7 @@
(map->Point v)
:else
(throw (ex-info "Invalid arguments" {:v v}))))
(ex/raise :hint "invalid arguments (on pointer constructor)" :value v)))
([x y]
(Point. x y)))