Versions in this module Expand all Collapse all v1 v1.0.1 Jan 30, 2021 Changes in this version + type Exception struct + Id int + Msg string + func Throw(id int, msg string) Exception + type ExceptionHandle func(Exception) + type TryStruct struct + func Try(tryHandle func()) *TryStruct + func (this *TryStruct) Catch(exceptionId int, catch func(Exception)) *TryStruct + func (this *TryStruct) Finally(finally func())