This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/packages/core/error.huia

8 lines
187 B
Text
Raw Normal View History

2018-09-01 11:44:59 +12:00
deftype Error message: String, backtrace: Array, as: ->
defstatic <Error> new message: String, backtrace: Array, as: ->
Error { message: message, backtrace: backtrace }
end
end