aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/HintException.php
blob: c63e4b76ae587feb867fc2a7e64c3a08b5fca8ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);
/**
 * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace OC;

/**
 * Class HintException
 *
 * An Exception class with the intention to be presented to the end user
 *
 * @package OC
 * @deprecated 23.0.0 Use \OCP\HintException
 */
class HintException extends \OCP\HintException {
}