aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/TemplateNameNotSetException.java
blob: 7a8693ca4ad4095114b947a2f80a35d4f00d5a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. 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;

import com.yahoo.vespa.hosted.node.admin.task.util.text.Cursor;

/**
 * @author hakonhall
 */
public class TemplateNameNotSetException extends TemplateException {
    public TemplateNameNotSetException(Section section, String name, Cursor nameOffset) {
        super(name + " at " + nameOffset.calculateLocation().lineAndColumnText() + " has not been set");
    }
}