2013-09-10 17:44:23 +00:00
|
|
|
<?php
|
2024-05-23 07:26:56 +00:00
|
|
|
|
2013-09-10 17:44:23 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-09-10 17:44:23 +00:00
|
|
|
*/
|
2013-11-03 12:51:39 +00:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2024-05-23 07:26:56 +00:00
|
|
|
// This means that they should be used by apps instead of the internal Nextcloud classes
|
2019-11-22 19:52:10 +00:00
|
|
|
|
2013-09-10 17:44:23 +00:00
|
|
|
namespace OCP\Files;
|
|
|
|
|
2013-11-25 15:39:01 +00:00
|
|
|
/**
|
|
|
|
* Exception for already existing files/folders
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-11-25 15:39:01 +00:00
|
|
|
*/
|
2013-09-10 17:44:23 +00:00
|
|
|
class AlreadyExistsException extends \Exception {
|
|
|
|
}
|