Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class FileNotFoundException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class InvalidArgumentException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class MailerConfigException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||||
|
||||
interface MailerExceptionInterface extends ComponentExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class MailerTransportException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class OAuthCredentialsException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Components\Mailer\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
class SmtpCredentialsException extends RuntimeException implements MailerExceptionInterface
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user