2015-09-22 09:43:40 +00:00
|
|
|
<?php
|
2024-05-23 07:26:56 +00:00
|
|
|
|
2015-09-22 09:43:40 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2015-09-22 09:43:40 +00:00
|
|
|
*/
|
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
use Sabre\DAV\Exception;
|
|
|
|
|
2015-09-23 14:15:56 +00:00
|
|
|
/**
|
|
|
|
* @since 8.2.0
|
|
|
|
*/
|
2015-09-22 09:43:40 +00:00
|
|
|
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
|
2015-09-22 09:43:40 +00:00
|
|
|
*/
|
|
|
|
public function getHTTPCode() {
|
|
|
|
return $this->code;
|
|
|
|
}
|
|
|
|
}
|