| 1 | <?php |
| 2 | |
| 3 | require_once __DIR__ . "/ProblemDetails.php"; |
| 4 | require_once __DIR__ . "/devuelveProblemDetails.php"; |
| 5 | require_once __DIR__ . "/devuelveErrorInterno.php"; |
| 6 | |
| 7 | function ejecutaServicio(callable $codigo) |
| 8 | { |
| 9 | try { |
| 10 | $codigo(); |
| 11 | } catch (ProblemDetails $details) { |
| 12 | devuelveProblemDetails($details); |
| 13 | } catch (Throwable $error) { |
| 14 | devuelveErrorInterno($error); |
| 15 | } |
| 16 | } |
| 17 |