class InvalidEndTagError
from dj_angles.exceptions import InvalidEndTagError
Indicates that a tag has been opened, but has not be closed correctly.
Ancestors (MRO)
- builtins.object
- builtins.BaseException
- builtins.Exception
- dj_angles.exceptions.InvalidEndTagError
Attribute | Type | Defined in |
---|---|---|
__cause__ |
getset_descriptor
|
builtins.BaseException |
__context__ |
getset_descriptor
|
builtins.BaseException |
__dict__ |
getset_descriptor
|
builtins.BaseException |
__suppress_context__ |
member_descriptor
|
builtins.BaseException |
__traceback__ |
getset_descriptor
|
builtins.BaseException |
args |
getset_descriptor
|
builtins.BaseException |
__weakref__ |
getset_descriptor
|
dj_angles.exceptions.InvalidEndTagError |
Attribute | Value | Defined in |
---|---|---|
__annotations__ |
{'tag': 'Tag', 'last_tag': 'Tag'} |
dj_angles.exceptions.InvalidEndTagError |
def __delattr__(self, name)
builtins.BaseException
Implement delattr(self, name).
def __getattribute__(self, name)
builtins.BaseException
Return getattr(self, name).
def __init__(self)
dj_angles.exceptions.InvalidEndTagError
dj_angles.exceptions.InvalidEndTagError
Initialize self. See help(type(self)) for accurate signature.
def __init__(self, tag: "Tag", last_tag: "Tag"):
super().__init__()
self.tag = tag
self.last_tag = last_tag
builtins.Exception
Initialize self. See help(type(self)) for accurate signature.
builtins.BaseException
Initialize self. See help(type(self)) for accurate signature.
def __new__(type, *args, **kwargs)
builtins.Exception
builtins.Exception
Create and return a new object. See help(type) for accurate signature.
builtins.BaseException
Create and return a new object. See help(type) for accurate signature.
def __reduce__(self)
builtins.BaseException
Helper for pickle.
def __repr__(self)
builtins.BaseException
Return repr(self).
def __setattr__(self, name, value)
builtins.BaseException
Implement setattr(self, name, value).
def __setstate__(self)
builtins.BaseException
def __str__(self)
builtins.BaseException
Return str(self).
def with_traceback(self)
builtins.BaseException
Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.