GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
ezcMail
Mail
src
exceptions
transport_exception.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
transport_exception.php
Blame
History
Raw
<?php /** * File containing the ezcMailTransportException class * * @package Mail * @version 1.7.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Transport exceptions are thrown when either sending or receiving * mail transports fail to do their job properly. * * @package Mail * @version 1.7.1 */ class ezcMailTransportException extends ezcMailException { /** * Constructs an ezcMailTransportException with low level information $message. * * @param string $message */ public function __construct( $message = '' ) { parent::__construct( "An error occured while sending or receiving mail. " . $message ); } } ?>