mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 12:40:28 +01:00
10 lines
247 B
PHP
10 lines
247 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\OrganizationFolders\Errors;
|
||
|
|
||
|
class AccessDenied extends \RuntimeException {
|
||
|
public function __construct(string $message = 'Access Denied.', \Throwable $previous = null) {
|
||
|
parent::__construct($message, 403, $previous);
|
||
|
}
|
||
|
}
|