eb05cb0027
Change-Id: Ifc1bb55f6b025bba77cf9858ed392dbf170075a7 Closes-Bug: #1268460 Signed-off-by: Fawad Khaliq <fawad@plumgrid.com>
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
#
|
|
# Copyright 2013 PLUMgrid, Inc. All Rights Reserved.
|
|
#
|
|
# 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: Edgar Magana, emagana@plumgrid.com, PLUMgrid, Inc.
|
|
|
|
|
|
"""Neutron PLUMgrid Plugin exceptions"""
|
|
|
|
from neutron.common import exceptions as base_exec
|
|
|
|
|
|
class PLUMgridException(base_exec.NeutronException):
|
|
message = _("PLUMgrid Plugin Error: %(err_msg)s")
|
|
|
|
|
|
class PLUMgridConnectionFailed(PLUMgridException):
|
|
message = _("Connection failed with PLUMgrid Director: %(err_msg)s")
|