movie-night-api/app/Exceptions/MovieNotFoundException.php

14 lines
221 B
PHP
Raw Permalink Normal View History

2026-02-18 00:15:02 -06:00
<?php
namespace App\Exceptions;
use Exception;
class MovieNotFoundException extends Exception
{
public function __construct(string $message = 'Movie not found')
{
parent::__construct($message);
}
}