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

14 lines
266 B
PHP
Raw Permalink Normal View History

2026-02-18 00:15:02 -06:00
<?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);
}
}