mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 14:50:39 -04:00
10 lines
301 B
PHP
10 lines
301 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class InvalidPageScanUrlException extends InvalidUrlException{
|
|
public function __construct(string $url, string $exampleUrl){
|
|
$this->message = 'Invalid page scan URL: <' . $url . '>. Expected a URL like: <'. $exampleUrl . '>.';
|
|
|
|
parent::__construct($this->message);
|
|
}
|
|
}
|