Files
tuskar-ui/django-openstack/django_openstack/exceptions.py
Joe Heck f5156e7d73 more pep8 cleanup to reduce to 0 pep8 issues
Change-Id: I7183f9c4a337657d0a5badfb07535b2b34f677b8
2011-10-31 11:33:54 -07:00

9 lines
249 B
Python

""" Standardized exception classes for the OpenStack Dashboard. """
from novaclient import exceptions as nova_exceptions
class Unauthorized(nova_exceptions.Unauthorized):
""" A wrapper around novaclient's Unauthorized exception. """
pass