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

/**
 * @author tonytv
 */
public class FileReferenceDoesNotExistException extends RuntimeException {

    public final String fileReference;

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

}