From: Ondrej Lichtner olichtne@redhat.com
Common Controller module. At the moment it only defines the ControllerError exception class, but other common functionality can be added later.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Controller/Common.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lnst/Controller/Common.py
diff --git a/lnst/Controller/Common.py b/lnst/Controller/Common.py new file mode 100644 index 0000000..c9e5771 --- /dev/null +++ b/lnst/Controller/Common.py @@ -0,0 +1,19 @@ +""" +Common Controller module. At the moment it only defines the ControllerError +exception class. + +Copyright 2017 Red Hat, Inc. +Licensed under the GNU General Public License, version 2 as +published by the Free Software Foundation; see COPYING for details. +""" + +__author__ = """ +olichtne@redhat.com (Ondrej Lichtner) +""" + +import os +import sys +from lnst.Common.LnstError import LnstError + +class ControllerError(LnstError): + pass