GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
ezcMail
Mail
src
exceptions
mail_exception.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
mail_exception.php
Blame
History
Raw
<?php /** * File containing the ezcMailException 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 */ /** * ezcMailExceptions are thrown when an exceptional state * occures in the Mail package. * * @package Mail * @version 1.7.1 */ class ezcMailException extends ezcBaseException { /** * Constructs a new ezcMailException with error message $message. * * @param string $message */ public function __construct( $message ) { parent::__construct( $message ); } } ?>