Files
b2b.redline.com.pl/modules/newsletterpro/libraries/swift/classes/Swift/RfcComplianceException.php
2025-06-24 14:14:35 +02:00

28 lines
583 B
PHP

<?php
/*
* This file is part of SwiftMailer.
* (c) 2004-2009 Chris Corbyn
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* RFC Compliance Exception class.
*
* @author Chris Corbyn
*/
class NewsletterPro_Swift_RfcComplianceException extends NewsletterPro_Swift_SwiftException
{
/**
* Create a new RfcComplianceException with $message.
*
* @param string $message
*/
public function __construct($message)
{
parent::__construct($message);
}
}