Exception.php 719 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Exception for Image_Text
  4. *
  5. * PHP version 5
  6. *
  7. * @category Image
  8. * @package Image_Text
  9. * @author Daniel O'Connor <daniel.oconnor@gmail.com>
  10. * @license http://www.php.net/license/3_01.txt PHP License
  11. * @link http://pear.php.net/package/Image_Text
  12. */
  13. $lib_path = api_get_path(LIBRARY_PATH);
  14. require_once $lib_path.'/pear/Exception.php';
  15. /**
  16. * Exception for Image_Text
  17. *
  18. * @category Image
  19. * @package Image_Text
  20. * @author Daniel O'Connor <daniel.oconnor@gmail.com>
  21. * @author Michael Cramer <michael@bigmichi1.de>
  22. * @license http://www.php.net/license/3_01.txt PHP License
  23. * @link http://pear.php.net/package/Image_Text
  24. */
  25. class Image_Text_Exception extends PEAR_Exception
  26. {
  27. }