aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning
diff options
context:
space:
mode:
Diffstat (limited to 'config-provisioning')
-rw-r--r--config-provisioning/src/main/java/com/yahoo/config/provision/ParentHostNotReadyException.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/config-provisioning/src/main/java/com/yahoo/config/provision/ParentHostNotReadyException.java b/config-provisioning/src/main/java/com/yahoo/config/provision/ParentHostNotReadyException.java
new file mode 100644
index 00000000000..da276136b48
--- /dev/null
+++ b/config-provisioning/src/main/java/com/yahoo/config/provision/ParentHostNotReadyException.java
@@ -0,0 +1,18 @@
+// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.config.provision;
+
+/**
+ *
+ * Exception thrown when trying to activate a node that runs on a host that is not
+ * yet ready to run the node.
+ *
+ * @author freva
+ *
+ */
+public class ParentHostNotReadyException extends RuntimeException {
+
+ public ParentHostNotReadyException(String message) {
+ super(message);
+ }
+
+}