diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2020-06-13 11:44:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 11:44:01 +0100 |
commit | d3b25a294858f655eef8c45d2a8b8b55261d53ac (patch) | |
tree | 7fa10d56f13a09d958b768d63b13e83a7fe37aed /doc/manual.rst | |
parent | d1498230198888c1b7699ed0b1de12796fd30a7d (diff) | |
download | Nim-d3b25a294858f655eef8c45d2a8b8b55261d53ac.tar.gz |
Clarify imported exceptions note in manual
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 451359dca..6eec8bef9 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -4354,7 +4354,7 @@ caught by reference. Example: fn() **Note:** `getCurrentException()` and `getCurrentExceptionMsg()` are not available -for imported exceptions. One needs to use the `except ImportedException as x:` syntax +for imported exceptions from C++. One needs to use the `except ImportedException as x:` syntax and rely on functionality of the `x` object to get exception details. |