summaryrefslogtreecommitdiffstats
path: root/filedistributionmanager/src/main/java/com/yahoo/vespa/filedistribution/PathDoesNotExistException.java
blob: 5dfdc0f9d7db7f2207510943627cbc70e9ec2247 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2017 Yahoo Holdings. 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;
    }
}