mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
The diff can be checked using: git diff --ignore-all-space --ignore-blank-lines To see only the changes not related to blank lines. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
18 lines
275 B
PHP
18 lines
275 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCP\AppFramework\OCS;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Class OCSException
|
|
*
|
|
* @since 9.1.0
|
|
*/
|
|
class OCSException extends Exception {
|
|
}
|