mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
6 lines
155 B
PHP
6 lines
155 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class InvalidMuseumUrlException extends InvalidUrlException{
|
|
protected $message = 'Invalid link to an approved museum page.';
|
|
}
|