2020-03-24 09:19:57 -04:00
|
|
|
<?php
|
2020-04-16 03:25:17 -04:00
|
|
|
|
2020-03-24 09:19:57 -04:00
|
|
|
declare(strict_types=1);
|
2020-04-29 05:57:22 -04:00
|
|
|
|
2020-03-24 09:19:57 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-03-24 09:19:57 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Http\Client;
|
|
|
|
|
|
2026-04-14 13:54:01 -04:00
|
|
|
use Psr\Http\Client\ClientExceptionInterface;
|
|
|
|
|
|
2020-03-24 09:19:57 -04:00
|
|
|
/**
|
|
|
|
|
* @since 19.0.0
|
|
|
|
|
*/
|
2026-04-14 13:54:01 -04:00
|
|
|
class LocalServerException extends \RuntimeException implements ClientExceptionInterface {
|
2020-03-24 09:19:57 -04:00
|
|
|
}
|