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/FileAlreadyExistsException.java b/src/main/java/org/arvados/client/logic/keep/exception/FileAlreadyExistsException.java
deleted file mode 100644 (file)
index ea02ffc..0000000
+++ /dev/null
@@ -1,23 +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;
-
-/**
- * Signals that an attempt to download a file with given name has failed for a specified
- * download location.
- *
- * <p> This exception will be thrown during an attempt to download single file to a location
- * that already contains file with given name</p>
- */
-public class FileAlreadyExistsException extends ArvadosClientException {
-
-    public FileAlreadyExistsException(String message) { super(message); }
-
-}