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 PayloadTooLarge extends HttpException
{
public function getHttpStatusCode(): int
return self::STATUS_PAYLOAD_TOO_LARGE;
}