11 lines
175 B
PHP
11 lines
175 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Mailer\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
class MailerTransportException extends RuntimeException implements MailerExceptionInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|