mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
7 lines
183 B
PHP
7 lines
183 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class InvalidArtworkPageUrlException extends InvalidUrlException{
|
|
/** @var string $message */
|
|
protected $message = 'Invalid link to page with artwork.';
|
|
}
|