Source code for pyaiml21.exceptions

"""
AIML exceptions raised during the evaluation of the response.

For the errors encountered during data parsing, refer to
`parser` module.
"""


[docs]class AIMLError(Exception): """Generic exception raised during AIML evaluation."""
[docs]class NoMatchingCategory(AIMLError): """When no match is found in the graphmaster."""