aboutsummaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php
blob: b014d6a14955bcfdca7223063656f7b284db65c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\Provisioning_API\Middleware\Exceptions;

use OCP\AppFramework\Http;

class NotSubAdminException extends \Exception {
	public function __construct() {
		parent::__construct('Logged in account must be at least a sub admin', Http::STATUS_FORBIDDEN);
	}
}