| OLD | NEW |
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 """ | 2 """ |
| 3 jinja2.exceptions | 3 jinja2.exceptions |
| 4 ~~~~~~~~~~~~~~~~~ | 4 ~~~~~~~~~~~~~~~~~ |
| 5 | 5 |
| 6 Jinja exceptions. | 6 Jinja exceptions. |
| 7 | 7 |
| 8 :copyright: (c) 2010 by the Jinja Team. | 8 :copyright: (c) 2010 by the Jinja Team. |
| 9 :license: BSD, see LICENSE for more details. | 9 :license: BSD, see LICENSE for more details. |
| 10 """ | 10 """ |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 class SecurityError(TemplateRuntimeError): | 137 class SecurityError(TemplateRuntimeError): |
| 138 """Raised if a template tries to do something insecure if the | 138 """Raised if a template tries to do something insecure if the |
| 139 sandbox is enabled. | 139 sandbox is enabled. |
| 140 """ | 140 """ |
| 141 | 141 |
| 142 | 142 |
| 143 class FilterArgumentError(TemplateRuntimeError): | 143 class FilterArgumentError(TemplateRuntimeError): |
| 144 """This error is raised if a filter was called with inappropriate | 144 """This error is raised if a filter was called with inappropriate |
| 145 arguments | 145 arguments |
| 146 """ | 146 """ |
| OLD | NEW |