summaryrefslogtreecommitdiffstats
path: root/configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java
diff options
context:
space:
mode:
Diffstat (limited to 'configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java')
-rw-r--r--configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java b/configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java
new file mode 100644
index 00000000000..a42f76340de
--- /dev/null
+++ b/configgen/src/main/java/com/yahoo/config/codegen/PropertyException.java
@@ -0,0 +1,8 @@
+// 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;
+
+public class PropertyException extends Exception {
+ PropertyException(String s) {
+ super(s);
+ }
+}