for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Inspirum\Balikobot\Exceptions;
use Throwable;
class UnauthorizedException extends AbstractException
{
/**
* UnauthorizedException constructor
*
* @param string|null $message
* @param int $statusCode
* @param \Throwable|null $previous
*/
public function __construct(string $message = null, int $statusCode = 401, Throwable $previous = null)
parent::__construct([], $statusCode, $previous, $message);
}