Raise system error message on EPP fail

This commit is contained in:
Erin 2023-11-30 16:23:20 -08:00
parent 4588a02d44
commit 5f68677d7f
No known key found for this signature in database
GPG key ID: 1CAD275313C62460
3 changed files with 15 additions and 2 deletions

View file

@ -13,6 +13,10 @@ class DomainUnavailableError(ValueError):
pass
class RegistrySystemError(ValueError):
pass
class ActionNotAllowed(Exception):
"""User accessed an action that is not
allowed by the current state"""