mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 14:50:39 -04:00
6 lines
377 B
PHP
6 lines
377 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class InvalidInternetArchiveUrlException extends InvalidUrlException{
|
|
protected $message = 'Invalid Internet Archive URL. Internet Archive URLs begin with “https://archive.org/details/” and must be in single-page view. An example of a valid Internet Archive URL is “https://archive.org/details/royalacademypict1902roya/page/n9/mode/1up”.';
|
|
}
|