Pop3Exception.php 618B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * Pop3Exception thrown when an error occurs connecting to a POP3 host.
  11. *
  12. * @package Swift
  13. * @subpackage Transport
  14. *
  15. * @author Chris Corbyn
  16. */
  17. class Swift_Plugins_Pop_Pop3Exception extends Swift_IoException
  18. {
  19. /**
  20. * Create a new Pop3Exception with $message.
  21. *
  22. * @param string $message
  23. */
  24. public function __construct($message)
  25. {
  26. parent::__construct($message);
  27. }
  28. }