From 27f7c1c922e5e7f586d423dc3b786c14e9f4dcbd Mon Sep 17 00:00:00 2001 From: Judit Novak Date: Thu, 12 Oct 2023 21:36:03 +0200 Subject: [PATCH] fixup! Secret labels --- src/exceptions.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/exceptions.py b/src/exceptions.py index 022182a4b..bb4e24c16 100644 --- a/src/exceptions.py +++ b/src/exceptions.py @@ -38,3 +38,9 @@ class MissingSecretError(MongoSecretError): """Could be raised when a Juju 3 mandatory secret couldn't be found.""" pass + + +class SecretAlreadyExistsError(MongoSecretError): + """A secret that we want to create already exists.""" + + pass