summaryrefslogtreecommitdiff
path: root/glance_store/exceptions.py
diff options
context:
space:
mode:
authorNikhil Komawar <nikhilskomawar@gmail.com>2015-01-14 16:11:09 -0500
committerNikhil Komawar <nikhilskomawar@gmail.com>2015-01-14 16:13:07 -0500
commitf5dc7265d323e8e9250b097eb495b9a32b1d26df (patch)
treea6c4c499ebb504cbcec63d15818eefaf4f6502f5 /glance_store/exceptions.py
parent523529f6423a2e4250307dc26a7cd9fe9d4ef2c2 (diff)
downloadglance_store-f5dc7265d323e8e9250b097eb495b9a32b1d26df.tar.gz
Remove unused exception StorageQuotaFull
This exception is not used in the glance_store code. Corresponding necessary exception exists in the glance code base. Change-Id: I12cb47f7a78ab3358381ca0dc197f997c435a6de
Diffstat (limited to 'glance_store/exceptions.py')
-rw-r--r--glance_store/exceptions.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/glance_store/exceptions.py b/glance_store/exceptions.py
index 87ac242..b41df97 100644
--- a/glance_store/exceptions.py
+++ b/glance_store/exceptions.py
@@ -88,11 +88,6 @@ class StorageFull(GlanceStoreException):
message = _("There is not enough disk space on the image storage media.")
-class StorageQuotaFull(GlanceStoreException):
- message = _("The size of the data %(image_size)s will exceed the limit. "
- "%(remaining)s bytes remaining.")
-
-
class StorageWriteDenied(GlanceStoreException):
message = _("Permission to write image storage media denied.")