initial commit
This commit is contained in:
commit
d96b74e6c1
88 changed files with 15238 additions and 0 deletions
13
app/Exceptions/MovieNotFoundException.php
Normal file
13
app/Exceptions/MovieNotFoundException.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class MovieNotFoundException extends Exception
|
||||
{
|
||||
public function __construct(string $message = 'Movie not found')
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue