dj_angles.exceptions ==================== .. py:module:: dj_angles.exceptions Module Contents --------------- .. py:exception:: InvalidEndTagError(tag: dj_angles.tags.Tag, last_tag: dj_angles.tags.Tag) Bases: :py:obj:`Exception` Indicates that a tag has been opened, but has not be closed correctly. .. py:attribute:: tag :type: dj_angles.tags.Tag Current tag that is being processed. .. py:attribute:: last_tag :type: dj_angles.tags.Tag The previous tag that was processed. .. py:exception:: MissingAttributeError(name: str) Bases: :py:obj:`Exception` Indicates that an attribute could not be found. .. py:attribute:: name :type: str The name of the attribute. .. py:exception:: DuplicateAttributeError(name: str) Bases: :py:obj:`Exception` Indicates that an attribute would be duplicated. .. py:attribute:: name :type: str The name of the attribute.