From d1193f0e628e81a6ff213b6df08b6d9fe42120d7 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 27 Apr 2021 15:03:02 -0500 Subject: [PATCH] Expose PGWUIError and SetupError --- src/pgwui_common/exceptions.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/pgwui_common/exceptions.py b/src/pgwui_common/exceptions.py index 593cd7e..ab71e8a 100644 --- a/src/pgwui_common/exceptions.py +++ b/src/pgwui_common/exceptions.py @@ -24,15 +24,14 @@ ''' from pgwui_core import exceptions as core_ex +from pgwui_core.exceptions import ( # noqa: F401 + PGWUIError, + UploadError as Error, + SetupError, +) from . import constants -class Error(core_ex.UploadError): - '''Base error class for module - ''' - pass - - class Info(core_ex.UploadError): '''Informational exceptions ''' -- 2.34.1