Skip to content

Instantly share code, notes, and snippets.

@ftsf
Created June 16, 2017 05:50
Show Gist options
  • Save ftsf/5421b2f77d2d29d576d25ac787d645b5 to your computer and use it in GitHub Desktop.
Save ftsf/5421b2f77d2d29d576d25ac787d645b5 to your computer and use it in GitHub Desktop.
type MyNewException = object of Exception
foo*: int
try:
var newE = newException(MyNewException, "foo")
newE.foo = 10
raise newE
except MyNewException:
let e = getCurrentException()[].MyNewException
echo e.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment