diff --git a/weboob/exceptions.py b/weboob/exceptions.py index d38f202fcfdaa650165b69daaa2540e4638532cf..2ecc5d7a1a9a69bc5189b811c4df80a82f7f873c 100644 --- a/weboob/exceptions.py +++ b/weboob/exceptions.py @@ -84,3 +84,7 @@ class ModuleLoadError(Exception): def __init__(self, module_name, msg): Exception.__init__(self, msg) self.module = module_name + + +class ActionNeeded(Exception): + pass