From: Frank Brehm Date: Mon, 15 Apr 2024 14:18:43 +0000 (+0200) Subject: Adding esception class DpxFileError X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=d12f6edcaa06c385b987c1c9958afdd2288e52f0;p=pixelpark%2Fpp-admin-tools.git Adding esception class DpxFileError --- diff --git a/lib/pp_admintools/errors.py b/lib/pp_admintools/errors.py index f6f8c52..2eec508 100644 --- a/lib/pp_admintools/errors.py +++ b/lib/pp_admintools/errors.py @@ -14,7 +14,7 @@ from .xlate import XLATOR _ = XLATOR.gettext -__version__ = '0.9.0' +__version__ = '0.9.1' # ============================================================================= @@ -31,6 +31,12 @@ class DpxAppError(DpxError, FbAppError): pass +# ============================================================================= +class DpxFileError(DpxAppError): + """Error class happening with handling with files.""" + + pass + # ============================================================================= class DpxAbortAppError(DpxAppError): """Special exception class interrupting the application."""