mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
16 lines
284 B
PHP
16 lines
284 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Files;
|
|
|
|
/**
|
|
* Class InvalidDirectoryException
|
|
*
|
|
* @since 9.2.0
|
|
*/
|
|
class InvalidDirectoryException extends InvalidPathException {
|
|
}
|