mirror of
https://github.com/PaiGramTeam/StarRailDamageCal.git
synced 2024-11-16 13:01:11 +00:00
31 lines
581 B
Python
31 lines
581 B
Python
class UidNotfoundError(Exception):
|
|
def __init__(self, uid: str):
|
|
self.uid = uid
|
|
|
|
def __str__(self):
|
|
return repr(self.uid)
|
|
|
|
|
|
class CharNameError(Exception):
|
|
def __init__(self, char_name: str):
|
|
self.char_name = char_name
|
|
|
|
def __str__(self):
|
|
return repr(self.char_name)
|
|
|
|
|
|
class MihomoRequestError(Exception):
|
|
pass
|
|
|
|
|
|
class NotInCharacterShowcaseError(Exception):
|
|
pass
|
|
|
|
|
|
class CharacterShowcaseNotOpenError(Exception):
|
|
def __init__(self, uid: str):
|
|
self.uid = uid
|
|
|
|
def __str__(self):
|
|
return repr(self.uid)
|