mirror of
https://github.com/chenasraf/cospend-nc.git
synced 2026-05-18 01:39:06 +00:00
16 lines
299 B
PHP
16 lines
299 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace GuzzleHttp\Exception;
|
|
|
|
class ServerException extends \RuntimeException {
|
|
|
|
public function getResponse() {
|
|
}
|
|
public function hasResponse(): bool {
|
|
}
|
|
}
|