class DuplicateAttributeError
from dj_angles.exceptions import DuplicateAttributeError
Indicates that an attribute would be duplicated.
Ancestors (MRO)
- builtins.object
- builtins.BaseException
- builtins.Exception
- dj_angles.exceptions.DuplicateAttributeError
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.DuplicateAttributeError |
Attribute | Value | Defined in |
---|---|---|
__annotations__ |
{'name': <class 'str'>} |
dj_angles.exceptions.DuplicateAttributeError |
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.DuplicateAttributeError
dj_angles.exceptions.DuplicateAttributeError
Initialize self. See help(type(self)) for accurate signature.
def __init__(self, name: str):
super().__init__()
self.name = name
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.