ConnectionException.php 519 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Swift Connection Exception
  4. * Please read the LICENSE file
  5. * @copyright Chris Corbyn <chris@w3style.co.uk>
  6. * @author Chris Corbyn <chris@w3style.co.uk>
  7. * @package Swift_Connection
  8. * @license GNU Lesser General Public License
  9. */
  10. require_once dirname(__FILE__) . "/ClassLoader.php";
  11. Swift_ClassLoader::load("Swift_Exception");
  12. /**
  13. * Swift Connection Exception
  14. * @package Swift_Connection
  15. * @author Chris Corbyn <chris@w3style.co.uk>
  16. */
  17. class Swift_ConnectionException extends Swift_Exception
  18. {
  19. }