aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc
diff options
context:
space:
mode:
authorandreer <andreer@verizonmedia.com>2020-02-05 11:31:48 +0100
committerandreer <andreer@verizonmedia.com>2020-02-05 11:31:48 +0100
commitd55929be2d6d498c0df66691c99d6202651f8c85 (patch)
treef43eed4cbb750d25698c50040aca0fd7b94a0456 /container-disc
parent2a7f13ab9f019586fc38275735ead7ad02afbd54 (diff)
reduce certificate log spam
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/src/main/java/com/yahoo/container/jdisc/secretstore/SecretNotFoundException.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/container-disc/src/main/java/com/yahoo/container/jdisc/secretstore/SecretNotFoundException.java b/container-disc/src/main/java/com/yahoo/container/jdisc/secretstore/SecretNotFoundException.java
new file mode 100644
index 00000000000..b9439432c06
--- /dev/null
+++ b/container-disc/src/main/java/com/yahoo/container/jdisc/secretstore/SecretNotFoundException.java
@@ -0,0 +1,12 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.container.jdisc.secretstore;
+
+/**
+ * @author mortent
+ */
+public class SecretNotFoundException extends RuntimeException {
+
+ public SecretNotFoundException(String message) {
+ super(message);
+ }
+}