more consolidation of error messages and their text

This commit is contained in:
David Kennedy 2023-10-24 13:02:02 -04:00
parent d532449b3d
commit 182d1a61c0
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
5 changed files with 101 additions and 21 deletions

View file

@ -45,7 +45,7 @@ except NameError:
# Attn: these imports should NOT be at the top of the file
try:
from .client import CLIENT, commands
from .errors import RegistryError, ErrorCode, CANNOT_CONTACT_REGISTRY, GENERIC_ERROR
from .errors import RegistryError, ErrorCode
from epplib.models import common, info
from epplib.responses import extensions
from epplib import responses
@ -61,6 +61,4 @@ __all__ = [
"info",
"ErrorCode",
"RegistryError",
"CANNOT_CONTACT_REGISTRY",
"GENERIC_ERROR",
]