aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/NotBooleanValueTemplateException.java
blob: 34879514cd1e71316022e4562c03eb5dfb9f8c5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.template;

/**
 * @author hakonhall
 */
public class NotBooleanValueTemplateException extends TemplateException {
    public NotBooleanValueTemplateException(String name) {
        super(name + " was set to a non-boolean value: must be true or false");
    }
}