10 lines
155 B
PHP
10 lines
155 B
PHP
<?php
|
||
|
||
namespace App\Exceptions;
|
||
|
||
use Exception;
|
||
|
||
class RemoteContentNotFound extends Exception
|
||
{
|
||
//used when guzzle can’t find the remote content
|
||
}
|