Try next hook exception. Raise this in your hook function to indicate that the next hook handler should be used to handle the operation.
| 32 | |
| 33 | |
| 34 | class TryNext(IPythonCoreError): |
| 35 | """Try next hook exception. |
| 36 | |
| 37 | Raise this in your hook function to indicate that the next hook handler |
| 38 | should be used to handle the operation. |
| 39 | """ |
| 40 | |
| 41 | class UsageError(IPythonCoreError): |
| 42 | """Error in magic function arguments, etc. |
no outgoing calls