aboutsummaryrefslogtreecommitdiffstats
path: root/fileacquirer/src/main/java/com/yahoo/filedistribution/fileacquirer/FileReferenceRemovedException.java
blob: 9847402b506665e83918248c6ebed06ef4f646ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 FileReferenceRemovedException extends RuntimeException {
    public final String fileReference;

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