summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-01 12:08:33 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-02 22:09:03 -0500
commitcafacd02697a2128d64a6d61d3185a204916119e (patch)
treec8f93495c115063ec40f9c3bc91edde5d614d56b
parent1ac59f21a9b28121b31c7e169ee0e3d07db852e9 (diff)
downloadanaconda-cafacd02697a2128d64a6d61d3185a204916119e.tar.gz
anaconda-cafacd02697a2128d64a6d61d3185a204916119e.tar.xz
anaconda-cafacd02697a2128d64a6d61d3185a204916119e.zip
Make a top level StorageError that all others are based on.
-rw-r--r--storage/errors.py48
1 files changed, 36 insertions, 12 deletions
diff --git a/storage/errors.py b/storage/errors.py
index d2d35ee9a..a23b572a3 100644
--- a/storage/errors.py
+++ b/storage/errors.py
@@ -1,6 +1,30 @@
+# errors.py
+# Exception classes for anaconda's storage configuration module.
+#
+# Copyright (C) 2009 Red Hat, Inc.
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions of
+# the GNU General Public License v.2, or (at your option) any later version.
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY expressed or implied, including the implied warranties of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+# Public License for more details. You should have received a copy of the
+# GNU General Public License along with this program; if not, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
+# source code or documentation are not subject to the GNU General Public
+# License and may only be used or replicated with the express permission of
+# Red Hat, Inc.
+#
+# Red Hat Author(s): Dave Lehman <dlehman@redhat.com>
+#
+
+class StorageError(Exception):
+ pass
# Device
-class DeviceError(Exception):
+class DeviceError(StorageError):
pass
class DeviceCreateError(DeviceError):
@@ -22,7 +46,7 @@ class DeviceUserDeniedFormatError(DeviceError):
pass
# DeviceFormat
-class DeviceFormatError(Exception):
+class DeviceFormatError(StorageError):
pass
class FormatCreateError(DeviceFormatError):
@@ -62,7 +86,7 @@ class SwapSpaceError(DeviceFormatError):
pass
# devicelibs
-class SwapError(Exception):
+class SwapError(StorageError):
pass
class SuspendError(SwapError):
@@ -71,35 +95,35 @@ class SuspendError(SwapError):
class OldSwapError(SwapError):
pass
-class MDRaidError(Exception):
+class MDRaidError(StorageError):
pass
-class DMError(Exception):
+class DMError(StorageError):
pass
-class LVMError(Exception):
+class LVMError(StorageError):
pass
-class CryptoError(Exception):
+class CryptoError(StorageError):
pass
# DeviceTree
-class DeviceTreeError(Exception):
+class DeviceTreeError(StorageError):
pass
# DeviceAction
-class DeviceActionError(Exception):
+class DeviceActionError(StorageError):
pass
# partitioning
-class PartitioningError(Exception):
+class PartitioningError(StorageError):
pass
-class PartitioningWarning(Exception):
+class PartitioningWarning(StorageError):
pass
# udev
-class UdevError(Exception):
+class UdevError(StorageError):
pass