¡@

Home 

OpenStack Study: exceptions.py

OpenStack Index

**** CubicPower OpenStack Study ****

# Copyright 2013 VMware, 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.

#

# @author: linb, VMware

from neutron.common import exceptions

**** CubicPower OpenStack Study ****

class VcnsException(exceptions.NeutronException):

pass

**** CubicPower OpenStack Study ****

class VcnsGeneralException(VcnsException):

**** CubicPower OpenStack Study ****

    def __init__(self, message):

        self.message = message

        super(VcnsGeneralException, self).__init__()

**** CubicPower OpenStack Study ****

class VcnsBadRequest(exceptions.BadRequest):

pass

**** CubicPower OpenStack Study ****

class VcnsNotFound(exceptions.NotFound):

message = _('%(resource)s not found: %(msg)s')

**** CubicPower OpenStack Study ****

class VcnsApiException(VcnsException):

message = _("An unknown exception %(status)s occurred: %(response)s.")

**** CubicPower OpenStack Study ****

    def __init__(self, **kwargs):

        super(VcnsApiException, self).__init__(**kwargs)

        self.status = kwargs.get('status')

        self.header = kwargs.get('header')

        self.response = kwargs.get('response')

**** CubicPower OpenStack Study ****

class ResourceRedirect(VcnsApiException):

message = _("Resource %(uri)s has been redirected")

**** CubicPower OpenStack Study ****

class RequestBad(VcnsApiException):

message = _("Request %(uri)s is Bad, response %(response)s")

**** CubicPower OpenStack Study ****

class Forbidden(VcnsApiException):

message = _("Forbidden: %(uri)s")

**** CubicPower OpenStack Study ****

class ResourceNotFound(VcnsApiException):

message = _("Resource %(uri)s not found")

**** CubicPower OpenStack Study ****

class MediaTypeUnsupport(VcnsApiException):

message = _("Media Type %(uri)s is not supported")

**** CubicPower OpenStack Study ****

class ServiceUnavailable(VcnsApiException):

message = _("Service Unavailable: %(uri)s")