Methods
1 month ago
WordPress
9 months ago
Mailer.php
2 years ago
MailerError.php
2 years ago
MailerFactory.php
1 year ago
MailerLog.php
2 days ago
MetaInfo.php
3 months ago
SendingLimitReachedException.php
2 days ago
SubscriberError.php
3 years ago
index.php
3 years ago
SendingLimitReachedException.php
16 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Mailer; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\RuntimeException; |
| 9 | |
| 10 | /** |
| 11 | * Thrown when the configured sending frequency limit is reached. An expected |
| 12 | * sending state, not an error — sending resumes once the interval passes. |
| 13 | */ |
| 14 | class SendingLimitReachedException extends RuntimeException { |
| 15 | } |
| 16 |