mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-01-07 07:26:46 +08:00
60 lines
937 B
Python
60 lines
937 B
Python
class CampaignEnd(Exception):
|
|
pass
|
|
|
|
|
|
class MapDetectionError(Exception):
|
|
pass
|
|
|
|
|
|
class MapWalkError(Exception):
|
|
pass
|
|
|
|
|
|
class MapEnemyMoved(Exception):
|
|
pass
|
|
|
|
|
|
class CampaignNameError(Exception):
|
|
pass
|
|
|
|
|
|
class ScriptError(Exception):
|
|
# This is likely to be a mistake of developers, but sometimes a random issue
|
|
pass
|
|
|
|
|
|
class ScriptEnd(Exception):
|
|
pass
|
|
|
|
|
|
class GameStuckError(Exception):
|
|
pass
|
|
|
|
|
|
class GameBugError(Exception):
|
|
# An error has occurred in Azur Lane game client. Alas is unable to handle.
|
|
# A restart should fix it.
|
|
pass
|
|
|
|
|
|
class GameTooManyClickError(Exception):
|
|
pass
|
|
|
|
|
|
class EmulatorNotRunningError(Exception):
|
|
pass
|
|
|
|
|
|
class GameNotRunningError(Exception):
|
|
pass
|
|
|
|
|
|
class GamePageUnknownError(Exception):
|
|
pass
|
|
|
|
|
|
class RequestHumanTakeover(Exception):
|
|
# Request human takeover
|
|
# Alas is unable to handle such error, probably because of wrong settings.
|
|
pass
|