summaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileReferenceDoesNotExistException.java
blob: 95aa07d14a74c12abd41cadc1a97ada2c70fc62a (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.filedistribution.fileacquirer;

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

    public final String fileReference;

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

}