You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
330 B
16 lines
330 B
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
|
|
|