summaryrefslogtreecommitdiff
path: root/gitlab/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r--gitlab/exceptions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py
index 251ef7b..602a452 100644
--- a/gitlab/exceptions.py
+++ b/gitlab/exceptions.py
@@ -322,3 +322,6 @@ def on_http_error(error: Type[Exception]) -> Callable[[__F], __F]:
return cast(__F, wrapped_f)
return wrap
+
+
+__all__ = [name for name in dir() if name.endswith("Error")]