mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
11 lines
359 B
Python
11 lines
359 B
Python
# This module contains some code copied from unittest2/ and other code
|
|
# developed in reference to unittest2.
|
|
# unittest2 is Copyright (c) 2001-2010 Python Software Foundation; All
|
|
# Rights Reserved. See: http://docs.python.org/license.html
|
|
__unittest = True
|
|
|
|
|
|
class TestNotFoundError(Exception):
|
|
|
|
"""Exception raised when a named test cannot be found"""
|