aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/vespa/config/FileReferenceDoesNotExistException.java
blob: b8767e6deb1fc99635831bf9adad1dddb6965896 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config;

/**
 * @author Tony Vaagenes
 */
public class FileReferenceDoesNotExistException extends RuntimeException {

    public final String fileReference;

    public FileReferenceDoesNotExistException(String fileReference) {
        super("Could not retrieve file with file reference '" + fileReference + "'");
        this.fileReference = fileReference;
    }

}