Files
oficial/app/src/Exception/MissingAuthorizationHeader.php
2023-11-25 00:55:31 -03:00

14 lines
290 B
PHP

<?php
namespace Incoviba\Exception;
use Throwable;
use Exception;
class MissingAuthorizationHeader extends Exception
{
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}