mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
7 lines
209 B
PHP
7 lines
209 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class NewsletterSubscriptionNotFoundException extends AppException{
|
||
/** @var string $message */
|
||
protected $message = 'We couldn’t find you in our newsletter subscribers list.';
|
||
}
|