for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VM\ErrorHandler\Exceptions\Http;
use VM\ErrorHandler\Exceptions\HttpException;
class UnavailableForLegalReasons extends HttpException
{
public function getHttpStatusCode(): int
return self::STATUS_UNAVAILABLE_FOR_LEGAL_REASONS;
}