movie-night-api/app/Exceptions/MovieDatabaseException.php
2026-02-18 00:15:02 -06:00

13 lines
266 B
PHP

<?php
namespace App\Exceptions;
use Exception;
class MovieDatabaseException extends Exception
{
public function __construct(string $message = 'Could not connect to movie database. Please try again later.')
{
parent::__construct($message);
}
}