Available on macro
Exceptions thrown by functions in eval.luv package.
eval.luv
new(error:UVError, ?message:String, ?previous:Exception)
Instantiates an error with given message and position.
finalerror:UVError
The error.
read onlymessage:String
Exception message.
read onlynative:Any
Native exception, which caused this exception.
read onlyprevious:Null<Exception>
Contains an exception, which was passed to previous constructor argument.
previous
read onlystack:CallStack
The call stack at the moment of the exception creation.
details():String
Detailed exception description.
Includes message, stack and the chain of previous exceptions (if set).
toString():String
Returns exception message.
unwrap():Any
Available on cs