-module(tagg_error). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export_type([tagg_error/0]). -type tagg_error() :: {tag_attribute_parsing_error, binary()} | {context_value_not_found_error, binary()} | {template_file_not_found_error, binary()} | tag_config_missing_error | {tag_not_closed_error, binary()}.