Module glasswall.content_management.errors.switches

Expand source code
from glasswall.content_management.errors.policies import ContentManagementPolicyError


class SwitchNotFound(ContentManagementPolicyError):
    """ The Content Management Policy Switch could not be found. """
    pass


class RestrictedValue(ContentManagementPolicyError):
    """ The Content Management Policy Switch has an unexpected value. """
    pass

Classes

class RestrictedValue (*args, **kwargs)

The Content Management Policy Switch has an unexpected value.

Expand source code
class RestrictedValue(ContentManagementPolicyError):
    """ The Content Management Policy Switch has an unexpected value. """
    pass

Ancestors

class SwitchNotFound (*args, **kwargs)

The Content Management Policy Switch could not be found.

Expand source code
class SwitchNotFound(ContentManagementPolicyError):
    """ The Content Management Policy Switch could not be found. """
    pass

Ancestors