diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-01-03 15:35:16 +0100 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-01-03 15:36:46 +0100 |
commit | 97d4f2138b34ff1eb3fd63c0ea430a7743df8638 (patch) | |
tree | d6965fb82dc124e7e8a84a14d61f76cbde101e7b /doc/tut2.txt | |
parent | 88a441ea8ea25f7a298a1279e0fb89274e2c544d (diff) | |
download | Nim-97d4f2138b34ff1eb3fd63c0ea430a7743df8638.tar.gz |
Fixes tutorial pdf generation due to hierarchy depth.
The hierarchy is now an ascii reprsentation.
Diffstat (limited to 'doc/tut2.txt')
-rwxr-xr-x | doc/tut2.txt | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/doc/tut2.txt b/doc/tut2.txt index 9c55b0e35..9f9dbe2db 100755 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -439,39 +439,39 @@ Exception hierarchy If you want to create your own exceptions you can inherit from E_Base, but you can also inherit from one of the existing exceptions if they fit your purpose. -The exception tree is: - -* E_Base - * EAsynch - * EControlC - * ESynch - * ESystem - * EIO - * EOS - * EInvalidLibrary - * EResourceExhausted - * EOutOfMemory - * EStackOverflow - * EArithmetic - * EDivByZero - * EOverflow - * EAccessViolation - * EAssertionFailed - * EInvalidValue - * EInvalidKey - * EInvalidIndex - * EInvalidField - * EOutOfRange - * ENoExceptionToReraise - * EInvalidObjectAssignment - * EInvalidObjectConversion - * EFloatingPoint - * EFloatInvalidOp - * EFloatDivByZero - * EFloatOverflow - * EFloatUnderflow - * EFloatInexact - * EDeadThread +The exception tree is:: + + * E_Base + * EAsynch + * EControlC + * ESynch + * ESystem + * EIO + * EOS + * EInvalidLibrary + * EResourceExhausted + * EOutOfMemory + * EStackOverflow + * EArithmetic + * EDivByZero + * EOverflow + * EAccessViolation + * EAssertionFailed + * EInvalidValue + * EInvalidKey + * EInvalidIndex + * EInvalidField + * EOutOfRange + * ENoExceptionToReraise + * EInvalidObjectAssignment + * EInvalidObjectConversion + * EFloatingPoint + * EFloatInvalidOp + * EFloatDivByZero + * EFloatOverflow + * EFloatUnderflow + * EFloatInexact + * EDeadThread See the `system <system.html>`_ module for a description of each exception. |