mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-22 07:42:49 +01:00
11f5904dd5
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
15 lines
276 B
PHP
15 lines
276 B
PHP
<?php
|
|
|
|
|
|
namespace OCA\News\Controller\Exceptions;
|
|
|
|
use Throwable;
|
|
|
|
class NotLoggedInException extends \Exception
|
|
{
|
|
public function __construct(?string $message = null)
|
|
{
|
|
parent::__construct($message ?? 'Unauthorized: User is not logged in!', 0, null);
|
|
}
|
|
}
|