mirror of
https://github.com/nextcloud/server.git
synced 2025-01-15 23:59:16 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
15 lines
311 B
PHP
15 lines
311 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCP\Files;
|
|
|
|
/**
|
|
* Exception for lost connection with the
|
|
* @since 25.0.11
|
|
*/
|
|
class ConnectionLostException extends \RuntimeException {
|
|
}
|