mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
27 lines
385 B
Python
27 lines
385 B
Python
class PayLogException(Exception):
|
|
pass
|
|
|
|
|
|
class PayLogFileError(PayLogException):
|
|
pass
|
|
|
|
|
|
class PayLogNotFound(PayLogFileError):
|
|
pass
|
|
|
|
|
|
class PayLogAccountNotFound(PayLogException):
|
|
pass
|
|
|
|
|
|
class PayLogAuthkeyException(PayLogException):
|
|
pass
|
|
|
|
|
|
class PayLogAuthkeyTimeout(PayLogAuthkeyException):
|
|
pass
|
|
|
|
|
|
class PayLogInvalidAuthkey(PayLogAuthkeyException):
|
|
pass
|