mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 20:10:36 +00:00
30 lines
603 B
Python
30 lines
603 B
Python
|
class GachaLogException(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class GachaLogFileError(GachaLogException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class GachaLogNotFound(GachaLogException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class GachaLogAccountNotFound(GachaLogException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class GachaLogInvalidAuthkey(GachaLogException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class GachaLogMixedProvider(GachaLogException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class PaimonMoeGachaLogFileError(GachaLogFileError):
|
||
|
def __init__(self, file_version: int, support_version: int):
|
||
|
super().__init__("Paimon.Moe version not supported")
|
||
|
self.support_version = support_version
|
||
|
self.file_version = file_version
|