<?php declare(strict_types=1); use Entity\Exception\EntityNotFoundException; use Exception\ParameterException; try { // À vous de jouer ! // } catch (ParameterException) { http_response_code(400); } catch (EntityNotFoundException) { http_response_code(404); } catch (Exception) { http_response_code(500); }