This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/app/Exceptions/NoPermissionException.php
2019-07-18 10:18:08 +02:00

9 lines
No EOL
308 B
PHP

<?php
namespace App\Exceptions;
class NoPermissionException extends HTTPException
{
public function __construct($httpCode = 403, $message = "You don't have the permission for this call", $code = 0, Exception $previous = null) {
parent::__construct($httpCode, $message, $code, $previous);
}
}