From 437c9a5e7634fb9679c2b01f6aae2b63c1b7b380 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Sat, 17 Jun 2023 09:20:57 +0700 Subject: [PATCH] feat: add more exceptions --- vollerei/exceptions/patcher.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/vollerei/exceptions/patcher.py b/vollerei/exceptions/patcher.py index a53cb96..9ed5d8a 100644 --- a/vollerei/exceptions/patcher.py +++ b/vollerei/exceptions/patcher.py @@ -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