Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / sdk / java-v2 / src / main / java / org / arvados / client / logic / keep / exception / static / gitweb.js
diff --git a/src/main/java/org/arvados/client/logic/keep/exception/DownloadFolderAlreadyExistsException.java b/src/main/java/org/arvados/client/logic/keep/exception/DownloadFolderAlreadyExistsException.java
deleted file mode 100644 (file)
index 9968ff0..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (C) The Arvados Authors. All rights reserved.
- *
- * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
- *
- */
-
-package org.arvados.client.logic.keep.exception;
-
-import org.arvados.client.exception.ArvadosClientException;
-
-/**
- * Exception indicating that directory with given name was already created in specified location.
- *
- * <p> This exception will be thrown during an attempt to download all files from certain
- * collection to a location that already contains folder named by this collection's UUID.</p>
- */
-public class DownloadFolderAlreadyExistsException extends ArvadosClientException {
-
-    public DownloadFolderAlreadyExistsException(String message) {
-        super(message);
-    }
-
-}