99f0b355d4
A new module i18n has been added. Errors.py has been translated. Closes-Bug: #1391157 Change-Id: Ib315a19770ef38c50de7432a993897956d28d0fb
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright 2013 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from zaqarclient._i18n import _ # noqa
|
|
|
|
__all__ = ['ZaqarError', 'DriverLoadFailure', 'InvalidOperation']
|
|
|
|
|
|
class ZaqarError(Exception):
|
|
"""Base class for errors."""
|
|
|
|
|
|
class DriverLoadFailure(ZaqarError):
|
|
"""Raised if a transport driver can't be loaded."""
|
|
|
|
def __init__(self, driver, ex):
|
|
msg = (_('Failed to load transport driver "%(driver)s": %(error)s') %
|
|
{'driver': driver, 'error': ex})
|
|
super(DriverLoadFailure, self).__init__(msg)
|
|
self.driver = driver
|
|
self.ex = ex
|
|
|
|
|
|
class InvalidOperation(ZaqarError):
|
|
"""Raised when attempted a non existent operation."""
|
|
|
|
|
|
class UnsupportedVersion(ZaqarError):
|
|
"""Raised if there is no endpoint which supports the requested version."""
|