Exception.php 668 B

1234567891011121314151617181920212223242526
  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. require_once 'PEAR/Exception.php';
  14. /**
  15. * Exception for Image_Text
  16. *
  17. * @category Image
  18. * @package Image_Text
  19. * @author Daniel O'Connor <daniel.oconnor@gmail.com>
  20. * @author Michael Cramer <michael@bigmichi1.de>
  21. * @license http://www.php.net/license/3_01.txt PHP License
  22. * @link http://pear.php.net/package/Image_Text
  23. */
  24. class Image_Text_Exception extends PEAR_Exception
  25. {
  26. }