/src/Zend/Media/Vorbis/Exception.php

http://php-reader.googlecode.com/ · PHP · 39 lines · 4 code · 2 blank · 33 comment · 0 complexity · ac793ad44f2d6669dfd5b9fb83a191d0 MD5 · raw file

  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Media
  17. * @subpackage Vorbis
  18. * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id: Exception.php 232 2011-05-14 13:09:03Z svollbehr $
  21. */
  22. /**#@+ @ignore */
  23. require_once 'Zend/Media/Exception.php';
  24. /**#@-*/
  25. /**
  26. * The Zend_Media_Vorbis_Exception is thrown whenever an error occurs within the Vorbis family of classes.
  27. *
  28. * @category Zend
  29. * @package Zend_Media
  30. * @subpackage Vorbis
  31. * @author Sven Vollbehr <sven@vollbehr.eu>
  32. * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
  33. * @license http://framework.zend.com/license/new-bsd New BSD License
  34. * @version $Id: Exception.php 232 2011-05-14 13:09:03Z svollbehr $
  35. */
  36. class Zend_Media_Vorbis_Exception extends Zend_Media_Exception
  37. {}