]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/errors.py
use address counts for improving index lookup
[nominatim.git] / nominatim / errors.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Custom exception and error classes for Nominatim.
9 """
10
11 class UsageError(Exception):
12     """ An error raised because of bad user input. This error will usually
13         not cause a stack trace to be printed unless debugging is enabled.
14     """