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