mirror of
https://github.com/elyby/accounts.git
synced 2025-01-07 12:43:49 +05:30
11 lines
139 B
PHP
11 lines
139 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\emails\exceptions;
|
|
|
|
use Exception;
|
|
|
|
class CannotSendEmailException extends Exception {
|
|
|
|
}
|