mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-06 03:23:25 +00:00
15 lines
280 B
Python
15 lines
280 B
Python
|
class TokenNotFound(Exception):
|
||
|
"""Token not found!"""
|
||
|
|
||
|
|
||
|
class RecoveryKeyNotFound(Exception):
|
||
|
"""Recovery key not found!"""
|
||
|
|
||
|
|
||
|
class InvalidMnemonic(Exception):
|
||
|
"""Phrase is not mnemonic!"""
|
||
|
|
||
|
|
||
|
class NewDeviceKeyNotFound(Exception):
|
||
|
"""New device key not found!"""
|