summaryrefslogtreecommitdiffstats
path: root/filedistributionmanager/src/main/java/com/yahoo/vespa/filedistribution/PathDoesNotExistException.java
blob: bfff2723013ddaa01a0c70be10340d1d781bc58f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.filedistribution;

/**
 * @author gjoranv
 */
public class PathDoesNotExistException extends RuntimeException {
    public final String path;

    PathDoesNotExistException(String path) {
        super("Path '" + path + "' does not exist.");
        this.path = path;
    }
}