projects
/
pgwui_common
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
175a2c3
)
Expose PGWUIError and SetupError
author
Karl O. Pinc
<kop@karlpinc.com>
Tue, 27 Apr 2021 20:03:02 +0000
(15:03 -0500)
committer
Karl O. Pinc
<kop@karlpinc.com>
Tue, 27 Apr 2021 20:03:02 +0000
(15:03 -0500)
src/pgwui_common/exceptions.py
patch
|
blob
|
history
diff --git
a/src/pgwui_common/exceptions.py
b/src/pgwui_common/exceptions.py
index 593cd7e06fefcf62ccbddd22b6b885b6baf8ccb9..ab71e8a863c7db13832ae6d5b51ecf4bfa2748c5 100644
(file)
--- 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
'''