nextcloud/lib/public/Files/StorageInvalidException.php

19 lines
474 B
PHP
Raw Normal View History

2014-07-01 08:35:44 -04:00
<?php
2014-07-01 08:35:44 -04:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2014-07-01 08:35:44 -04:00
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal Nextcloud classes
2014-07-01 08:35:44 -04:00
namespace OCP\Files;
/**
* Storage has invalid configuration
* @since 7.0.0
2014-07-01 08:35:44 -04:00
*/
class StorageInvalidException extends \Exception {
}