/framework/vendor/swift/lib/classes/Swift/Plugins/Pop/Pop3Exception.php

http://zoop.googlecode.com/ · PHP · 34 lines · 8 code · 5 blank · 21 comment · 0 complexity · 4d439b5ad54559415df76378bc606d3c MD5 · raw file

  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. //@require 'Swift/IoException.php';
  10. /**
  11. * Pop3Exception thrown when an error occurs connecting to a POP3 host.
  12. *
  13. * @package Swift
  14. * @subpackage Transport
  15. *
  16. * @author Chris Corbyn
  17. */
  18. class Swift_Plugins_Pop_Pop3Exception extends Swift_IoException
  19. {
  20. /**
  21. * Create a new Pop3Exception with $message.
  22. *
  23. * @param string $message
  24. */
  25. public function __construct($message)
  26. {
  27. parent::__construct($message);
  28. }
  29. }