2013-03-03 11:06:00 +00:00
|
|
|
<?php
|
2021-06-29 23:20:33 +00:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
2013-03-03 11:06:00 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2013-03-03 11:06:00 +00:00
|
|
|
*/
|
2021-06-29 23:20:33 +00:00
|
|
|
|
2013-03-03 11:06:00 +00:00
|
|
|
namespace OC;
|
|
|
|
|
2016-11-28 10:34:23 +00:00
|
|
|
/**
|
|
|
|
* Class HintException
|
|
|
|
*
|
|
|
|
* An Exception class with the intention to be presented to the end user
|
|
|
|
*
|
|
|
|
* @package OC
|
2022-07-27 12:51:42 +00:00
|
|
|
* @deprecated 23.0.0 Use \OCP\HintException
|
2016-11-28 10:34:23 +00:00
|
|
|
*/
|
2021-06-29 23:20:33 +00:00
|
|
|
class HintException extends \OCP\HintException {
|
2013-03-03 11:06:00 +00:00
|
|
|
}
|