mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -04:00
Mark LocalServerException as a ClientExceptionInterface and ensure buildRequestOptions is called. Signed-off-by: Carl Schwan <carlschwan@kde.org>
17 lines
354 B
PHP
17 lines
354 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Http\Client;
|
|
|
|
use Psr\Http\Client\ClientExceptionInterface;
|
|
|
|
/**
|
|
* @since 19.0.0
|
|
*/
|
|
class LocalServerException extends \RuntimeException implements ClientExceptionInterface {
|
|
}
|