summaryrefslogtreecommitdiffstats
path: root/config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java')
-rw-r--r--config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java b/config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java
new file mode 100644
index 00000000000..56020906499
--- /dev/null
+++ b/config-lib/src/main/java/com/yahoo/config/ConfigurationRuntimeException.java
@@ -0,0 +1,21 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.config;
+
+/**
+ * This exception is thrown on internal errors in the configuration system.
+ */
+@SuppressWarnings("serial")
+public class ConfigurationRuntimeException extends RuntimeException {
+ public ConfigurationRuntimeException(String message) {
+ super(message);
+ }
+
+ public ConfigurationRuntimeException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public ConfigurationRuntimeException(Throwable cause) {
+ super(cause);
+ }
+
+} \ No newline at end of file