dj_angles.exceptions

Module Contents

exception dj_angles.exceptions.InvalidEndTagError(tag: dj_angles.tags.Tag, last_tag: dj_angles.tags.Tag)

Bases: Exception

Indicates that a tag has been opened, but has not be closed correctly.

tag: dj_angles.tags.Tag

Current tag that is being processed.

last_tag: dj_angles.tags.Tag

The previous tag that was processed.

exception dj_angles.exceptions.MissingAttributeError(name: str)

Bases: Exception

Indicates that an attribute could not be found.

name: str

The name of the attribute.

exception dj_angles.exceptions.DuplicateAttributeError(name: str)

Bases: Exception

Indicates that an attribute would be duplicated.

name: str

The name of the attribute.