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:
parent
7a8b0e710b
commit
d68be0869b
1 changed files with 2 additions and 1 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue