summaryrefslogtreecommitdiffstats
path: root/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java')
-rw-r--r--configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java b/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java
new file mode 100644
index 00000000000..56a87c0506e
--- /dev/null
+++ b/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.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.codegen;
+
+/**
+ * This exception is thrown on internal errors.
+ *
+ * @author <a href="gv@yahoo-inc.com">G. Voldengen</a>
+ */
+public class CodegenRuntimeException extends RuntimeException {
+ public CodegenRuntimeException(String s, Throwable cause) {
+ super(s, cause);
+ }
+
+ public CodegenRuntimeException(Throwable cause) {
+ super(cause);
+ }
+
+ public CodegenRuntimeException(String s) {
+ super(s);
+ }
+}