summaryrefslogtreecommitdiffstats
path: root/storage/errors.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-02-27 11:28:48 -0600
committerDavid Lehman <dlehman@redhat.com>2009-02-27 11:28:48 -0600
commitaa3db4ff84c65bd74f93dc751a81cac5c83364e6 (patch)
tree792949210cf38ecc017cfde9b54fda21b043ef79 /storage/errors.py
parente0071db60c898e310ee4f9e8d9cb5606ed561565 (diff)
downloadanaconda-aa3db4ff84c65bd74f93dc751a81cac5c83364e6.tar.gz
anaconda-aa3db4ff84c65bd74f93dc751a81cac5c83364e6.tar.xz
anaconda-aa3db4ff84c65bd74f93dc751a81cac5c83364e6.zip
Add DeviceResizeError and PartitioningWarning exceptions.
Diffstat (limited to 'storage/errors.py')
-rw-r--r--storage/errors.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/storage/errors.py b/storage/errors.py
index 3521873d3..692e0acc9 100644
--- a/storage/errors.py
+++ b/storage/errors.py
@@ -9,6 +9,9 @@ class DeviceCreateError(DeviceError):
class DeviceDestroyError(DeviceError):
pass
+class DeviceResizeError(DeviceError):
+ pass
+
class DeviceSetupError(DeviceError):
pass
@@ -92,6 +95,9 @@ class DeviceActionError(Exception):
class PartitioningError(Exception):
pass
+class PartitioningWarning(Exception):
+ pass
+
# udev
class UdevError(Exception):
pass