feat: add more exceptions

This commit is contained in:
tretrauit 2023-06-17 09:20:57 +07:00
parent 9cb18a26c4
commit 437c9a5e76

View File

@ -11,3 +11,21 @@ class VersionNotSupportedError(PatcherError):
"""Exception raised when the game version is not supported."""
pass
class PatchingFailedError(PatcherError):
"""Exception raised when the patching failed."""
pass
class PatchUpdateError(PatcherError):
"""Exception raised when the patch update failed."""
pass
class UnpatchingFailedError(PatcherError):
"""Exception raised when the unpatching failed."""
pass