. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\Exceptions; use Fig\Http\Message\StatusCodeInterface; /** * Exception thrown when we have some sort of fatal error. */ class HttpServerErrorException extends HttpException { /** * @param string $message */ public function __construct(string $message) { parent::__construct($message, StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR); } }