From ca8aa86ebb46575a27e5d624da372bc88e5f6022 Mon Sep 17 00:00:00 2001 From: Lubos Mjachky Date: Sat, 3 Feb 2024 22:31:55 +0100 Subject: [PATCH] Expose TimeoutException closes #5024 --- CHANGES/plugin_api/5024.feature | 1 + pulpcore/plugin/exceptions.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 CHANGES/plugin_api/5024.feature diff --git a/CHANGES/plugin_api/5024.feature b/CHANGES/plugin_api/5024.feature new file mode 100644 index 0000000000..7ebc6920f4 --- /dev/null +++ b/CHANGES/plugin_api/5024.feature @@ -0,0 +1 @@ +Exposed ``TimeoutException`` to plugin writers. diff --git a/pulpcore/plugin/exceptions.py b/pulpcore/plugin/exceptions.py index 1290cb867a..0c08f6232f 100644 --- a/pulpcore/plugin/exceptions.py +++ b/pulpcore/plugin/exceptions.py @@ -4,5 +4,6 @@ PulpException, SizeValidationError, MissingDigestValidationError, + TimeoutException, UnsupportedDigestValidationError, )