<?php

namespace App\Shared\Error;

use Symfony\Component\HttpFoundation\Response;

class NotFoundError extends BaseError
{
    public function __construct(string $message)
    {
        parent::__construct(
            Response::HTTP_NOT_FOUND,
            $message,
            ErrorCode::EntityNotFound
        );
    }
}