mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
11 lines
269 B
PHP
11 lines
269 B
PHP
|
|
<?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);
|
||
|
|
}
|
||
|
|
}
|