aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileReferenceRemovedException.java
blob: 93a81e5b5276b37a01abb02b57be8c1a66d79238 (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.filedistribution.fileacquirer;

/**
 * @author tonytv
 */
public class FileReferenceRemovedException extends RuntimeException {
    public final String fileReference;

    FileReferenceRemovedException(String fileReference) {
        super("The file with file reference '" + fileReference + "' was removed while waiting.");
        this.fileReference = fileReference;
    }
}