File: exc.py

package info (click to toggle)
python-formencode 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,844 kB
  • sloc: python: 7,032; makefile: 139; sh: 96; javascript: 61
file content (10 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
"""
Custom exceptions and warnings.
"""

__all__ = ['FERunTimeWarning']


class FERuntimeWarning(RuntimeWarning):
    """ Run time warning. """
    pass