0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 08:45:21 +00:00
nextcloud_server/lib/public/SabrePluginException.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
454 B
PHP
Raw Permalink Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCP;
use Sabre\DAV\Exception;
2015-09-23 14:15:56 +00:00
/**
* @since 8.2.0
*/
class SabrePluginException extends Exception {
/**
* Returns the HTTP statuscode for this exception
*
* @return int
2015-09-23 14:15:56 +00:00
* @since 8.2.0
*/
public function getHTTPCode() {
return $this->code;
}
}