File: exc.py

package info (click to toggle)
python-fudge 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 716 kB
  • sloc: javascript: 3,300; python: 2,537; makefile: 84; sh: 5
file content (10 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10

"""Exceptions used by the fudge module.

See :ref:`using-fudge` for common scenarios.
"""

__all__ = ['FakeDeclarationError']

class FakeDeclarationError(Exception):
    """Exception in how this :class:`fudge.Fake` was declared."""