Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/cms/exceptions.py
Stats: 0 executed, 20 missed, 0 excluded, 18 ignored
# -*- coding: utf-8 -*-
class PluginAlreadyRegistered(Exception):
pass
class PluginNotRegistered(Exception):
pass
class AppAlreadyRegistered(Exception):
pass
AppAllreadyRegistered = AppAlreadyRegistered # backwards compatibility, will be dropped in 2.3
class NotImplemented(Exception):
pass
class SubClassNeededError(Exception):
pass
class MissingFormError(Exception):
pass
class NoHomeFound(Exception):
pass
class PermissionsException(Exception):
"""Base permission exception
"""
class NoPermissionsException(PermissionsException):
"""Can be fired when some violate action is performed on permission system.
"""
class Deprecated(Exception): pass
class DuplicatePlaceholderWarning(Warning): pass
class DontUsePageAttributeWarning(Warning): pass