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