for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BenTools\MercurePHP\Exception\Http;
abstract class HttpException extends \RuntimeException
{
protected int $statusCode;
/**
* @return int
*/
public function getStatusCode(): int
return $this->statusCode;
}