TYPO3 API  SVNRelease
Pop3Exception.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*
00004  * This file is part of SwiftMailer.
00005  * (c) 2004-2009 Chris Corbyn
00006  *
00007  * For the full copyright and license information, please view the LICENSE
00008  * file that was distributed with this source code.
00009  */
00010 
00011 //@require 'Swift/IoException.php';
00012 
00013 /**
00014  * Pop3Exception thrown when an error occurs connecting to a POP3 host.
00015  *
00016  * @package Swift
00017  * @subpackage Transport
00018  *
00019  * @author Chris Corbyn
00020  */
00021 class Swift_Plugins_Pop_Pop3Exception extends Swift_IoException
00022 {
00023 
00024   /**
00025    * Create a new Pop3Exception with $message.
00026    *
00027    * @param string $message
00028    */
00029   public function __construct($message)
00030   {
00031     parent::__construct($message);
00032   }
00033 
00034 }