generated from Nodarx/template
ad6b7c5eba
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
20 lines
306 B
PHP
20 lines
306 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXM\ProviderImap\Smtp;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* SMTP client exception.
|
|
*/
|
|
final class SmtpException extends RuntimeException
|
|
{
|
|
}
|