Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NotSubAdminException.php « Exceptions « Middleware « lib « provisioning_api « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 007ea04db46f38e848d4e7c2ecdbba45bc0824b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace OCA\Provisioning_API\Middleware\Exceptions;

use OCP\AppFramework\Http;

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