blob: a0489234a1a9213b4fa5442ceb7c144a8232b4f6 [file] [log] [blame]
Pim Schellart5a7d17f2016-06-17 17:35:59 -04001Can we catch a MyException?
2MyException : this error should go to a custom type
3
4Can we translate to standard Python exceptions?
5RuntimeError : this error should go to a standard Python exception
6
7Can we handle unknown exceptions?
8RuntimeError : Caught an unknown exception!
9
10Can we delegate to another handler by rethrowing?
11MyException : this error is rethrown
12
13Can we fall-through to the default handler?
14RuntimeError : this error should fall through to the standard handler
15