From: Ondrej Lichtner olichtne@redhat.com
Defines the Base LNST Exception. All LNST related exceptions should inherit from this.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Common/LnstError.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lnst/Common/LnstError.py
diff --git a/lnst/Common/LnstError.py b/lnst/Common/LnstError.py new file mode 100644 index 0000000..ae8d9bc --- /dev/null +++ b/lnst/Common/LnstError.py @@ -0,0 +1,18 @@ +""" +Defines the LnstError 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) +""" + +class LnstError(Exception): + """Base LNST Exception type + + All LNST related Exceptions should inherit from this class. + """ + pass