keksAccount/app/Exceptions/NotLoggedInException.php

10 lines
282 B
PHP
Raw Normal View History

2019-04-25 15:33:15 +00:00
<?php
namespace App\Exceptions;
class NotLoggedInException extends HTTPException
{
public function __construct($httpCode = 401, $message = "You need to login", $code = 0, Exception $previous = null) {
parent::__construct($httpCode, $message, $code, $previous);
}
2019-12-02 13:26:32 +00:00
}