Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / sdk / java-v2 / src / main / java / org / arvados / client / logic / keep / exception / DownloadFolderAlreadyExistsException.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  * Exception indicating that directory with given name was already created in specified location.
14  *
15  * <p> This exception will be thrown during an attempt to download all files from certain
16  * collection to a location that already contains folder named by this collection's UUID.</p>
17  */
18 public class DownloadFolderAlreadyExistsException extends ArvadosClientException {
19
20     public DownloadFolderAlreadyExistsException(String message) {
21         super(message);
22     }
23
24 }