mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
6 lines
165 B
PHP
6 lines
165 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class NewsletterSubscriptionExistsException extends SeException{
|
||
protected $message = 'You’re already subscribed to the newsletter.';
|
||
}
|