Merge "Reorder catalog exceptions"

This commit is contained in:
Jenkins 2015-05-14 07:43:12 +00:00 committed by Gerrit Code Review
commit bd1deb5e3e
1 changed files with 5 additions and 5 deletions

View File

@ -22,11 +22,11 @@ class CatalogException(base.ClientException):
"""Something is rotten in Service Catalog."""
class EmptyCatalog(CatalogException):
"""The service catalog is empty."""
pass
class EndpointNotFound(CatalogException):
"""Could not find requested endpoint in Service Catalog."""
pass
class EmptyCatalog(EndpointNotFound):
"""The service catalog is empty."""
pass