Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

17 lines
330 B
Python

class CrispyError(Exception):
pass
class FormHelpersException(CrispyError):
"""
This is raised when building a form via helpers throws an error.
We want to catch form helper errors as soon as possible because
debugging templatetags is never fun.
"""
pass
class DynamicError(CrispyError):
pass