From 271b4dbdb643fa0fc9a748fb94600871ff230139 2013-08-27 21:25:32 From: MinRK Date: 2013-08-27 21:25:32 Subject: [PATCH] Backport PR #4101: restore accidentally removed EngineError in cleanup PR #3527, I removed one too many exception classes. I acked IPython to check that I didn't miss any more. closes #4100 should be backported to 1.1. --- diff --git a/IPython/parallel/error.py b/IPython/parallel/error.py index 603bf2b..733c4a4 100644 --- a/IPython/parallel/error.py +++ b/IPython/parallel/error.py @@ -43,6 +43,9 @@ class IPythonError(Exception): class KernelError(IPythonError): pass +class EngineError(KernelError): + pass + class NoEnginesRegistered(KernelError): pass