vendor/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of SwiftMailer.
  4.  * (c) 2004-2009 Chris Corbyn
  5.  *
  6.  * For the full copyright and license information, please view the LICENSE
  7.  * file that was distributed with this source code.
  8.  */
  9. /**
  10.  * RFC Compliance Exception class.
  11.  *
  12.  * @author Chris Corbyn
  13.  */
  14. class Swift_RfcComplianceException extends Swift_SwiftException
  15. {
  16.     /**
  17.      * Create a new RfcComplianceException with $message.
  18.      *
  19.      * @param string $message
  20.      */
  21.     public function __construct($message)
  22.     {
  23.         parent::__construct($message);
  24.     }
  25. }