<?php
/**
* @package Mail
*/
/**
* Email Exception for CompositeMail class
*
* @package Mail
* @license http://www.gnu.org/copyleft/gpl.html GPL
* @author Michal "Techi" Vrchota <hide@address.com>
* @category Mail
*
*/
class EmailException extends Exception
{
/**
* Constructor
*
* @param string $mesasge
* @param integer $code
*/
public function __construct($message = FALSE, $code = FALSE)
{
$this->message = $message;
$this->code = $code;
}
}
?>