From: Ondrej Lichtner olichtne@redhat.com
Defines the Exception class for errors from the InterfaceManager.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Common/InterfaceManagerError.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lnst/Common/InterfaceManagerError.py
diff --git a/lnst/Common/InterfaceManagerError.py b/lnst/Common/InterfaceManagerError.py new file mode 100644 index 0000000..800e6c0 --- /dev/null +++ b/lnst/Common/InterfaceManagerError.py @@ -0,0 +1,16 @@ +""" +Defines the InterfaceManagerError 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) +""" + +from lnst.Common.LnstError import LnstError + +class InterfaceManagerError(LnstError): + pass