RfcComplianceException.php 573B

1234567891011121314151617181920212223242526272829
  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. * @package Swift
  13. * @author Chris Corbyn
  14. */
  15. class Swift_RfcComplianceException extends Swift_SwiftException
  16. {
  17. /**
  18. * Create a new RfcComplianceException with $message.
  19. *
  20. * @param string $message
  21. */
  22. public function __construct($message)
  23. {
  24. parent::__construct($message);
  25. }
  26. }