Tweak test script no issue #
[arvados.git] / src / main / java / org / arvados / client / logic / keep / exception / FileAlreadyExistsException.java
1 /*
2  * Copyright (C) The Arvados Authors. All rights reserved.
3  *
4  * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
5  *
6  */
7
8 package org.arvados.client.logic.keep.exception;
9
10 import org.arvados.client.exception.ArvadosClientException;
11
12 /**
13  * Signals that an attempt to download a file with given name has failed for a specified
14  * download location.
15  *
16  * <p> This exception will be thrown during an attempt to download single file to a location
17  * that already contains file with given name</p>
18  */
19 public class FileAlreadyExistsException extends ArvadosClientException {
20
21     public FileAlreadyExistsException(String message) { super(message); }
22
23 }