mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-10 22:04:58 +03:00
9 lines
246 B
Python
9 lines
246 B
Python
"""
|
|
Custom exception and error classes for Nominatim.
|
|
"""
|
|
|
|
class UsageError(Exception):
|
|
""" An error raised because of bad user input. This error will usually
|
|
not cause a stack trace to be printed unless debugging is enabled.
|
|
"""
|