xref: /plugin/smtp/vendor/txthinking/mailer/src/Mailer/Exceptions/SMTPException.php (revision ee5c02056e482f4a07fb4b075ec45c4dfd3de0e8)
1*ee5c0205SAndreas Gohr<?php
2*ee5c0205SAndreas Gohr/***************************************************\
3*ee5c0205SAndreas Gohr *
4*ee5c0205SAndreas Gohr *  Mailer (https://github.com/txthinking/Mailer)
5*ee5c0205SAndreas Gohr *
6*ee5c0205SAndreas Gohr *  A lightweight PHP SMTP mail sender.
7*ee5c0205SAndreas Gohr *  Implement RFC0821, RFC0822, RFC1869, RFC2045, RFC2821
8*ee5c0205SAndreas Gohr *
9*ee5c0205SAndreas Gohr *  Support html body, don't worry that the receiver's
10*ee5c0205SAndreas Gohr *  mail client can't support html, because Mailer will
11*ee5c0205SAndreas Gohr *  send both text/plain and text/html body, so if the
12*ee5c0205SAndreas Gohr *  mail client can't support html, it will display the
13*ee5c0205SAndreas Gohr *  text/plain body.
14*ee5c0205SAndreas Gohr *
15*ee5c0205SAndreas Gohr *  Create Date 2012-07-25.
16*ee5c0205SAndreas Gohr *  Under the MIT license.
17*ee5c0205SAndreas Gohr *
18*ee5c0205SAndreas Gohr \***************************************************/
19*ee5c0205SAndreas Gohr/**
20*ee5c0205SAndreas Gohr * Created by PhpStorm.
21*ee5c0205SAndreas Gohr * User: msowers
22*ee5c0205SAndreas Gohr * Date: 3/30/15
23*ee5c0205SAndreas Gohr * Time: 1:51 PM
24*ee5c0205SAndreas Gohr */
25*ee5c0205SAndreas Gohr
26*ee5c0205SAndreas Gohrnamespace Tx\Mailer\Exceptions;
27*ee5c0205SAndreas Gohr
28*ee5c0205SAndreas Gohrclass SMTPException extends \Exception
29*ee5c0205SAndreas Gohr{
30*ee5c0205SAndreas Gohr    public function __construct($message)
31*ee5c0205SAndreas Gohr    {
32*ee5c0205SAndreas Gohr        parent::__construct($message);
33*ee5c0205SAndreas Gohr    }
34*ee5c0205SAndreas Gohr
35*ee5c0205SAndreas Gohr}
36