[ Index ] |
MailPress 7.2 |
[ Index ] [ Classes ] [ Functions ] [ Variables ] [ Constants ] [ Statistics ] |
[Summary view] [Print] [Text view]
1 <?php 2 3 /* 4 * This file is part of SwiftMailer. 5 * (c) 2004-2009 Chris Corbyn 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11 /** 12 * Base Exception class. 13 * 14 * @author Chris Corbyn 15 */ 16 class Swift_SwiftException extends Exception 17 { 18 /** 19 * Create a new SwiftException with $message. 20 * 21 * @param string $message 22 * @param int $code 23 */ 24 public function __construct($message, $code = 0, Exception $previous = null) 25 { 26 parent::__construct($message, $code, $previous); 27 } 28 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue May 19 15:55:14 2020 | Cross-referenced by PHPXref 0.7.1 |