mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-01 15:54:53 +00:00
11 lines
315 B
Python
11 lines
315 B
Python
class LookupAlreadyRegistered(Exception):
|
|
"Exception when trying to register a lookup which is already registered."
|
|
|
|
|
|
class LookupNotRegistered(Exception):
|
|
"Exception when trying use a lookup which is not registered."
|
|
|
|
|
|
class LookupInvalid(Exception):
|
|
"Exception when register an invalid lookup class."
|