commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / packages / ezc / Mail / src / exceptions / transport_exception.php
1 <?php
2 /**
3 * File containing the ezcMailTransportException class
4 *
5 * @package Mail
6 * @version 1.7beta1
7 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
8 * @license http://ez.no/licenses/new_bsd New BSD License
9 */
10
11 /**
12 * Transport exceptions are thrown when either sending or receiving
13 * mail transports fail to do their job properly.
14 *
15 * @package Mail
16 * @version 1.7beta1
17 */
18 class ezcMailTransportException extends ezcMailException
19 {
20 /**
21 * Constructs an ezcMailTransportException with low level information $message.
22 *
23 * @param string $message
24 */
25 public function __construct( $message = '' )
26 {
27 parent::__construct( "An error occured while sending or receiving mail. " . $message );
28 }
29 }
30 ?>