/titania/includes/library/ezcomponents/Archive/exceptions/empty.php

http://github.com/phpbb/customisation-db · PHP · 27 lines · 9 code · 1 blank · 17 comment · 0 complexity · c967b2d2d172ab607667556e1373a0c6 MD5 · raw file

  1. <?php
  2. /**
  3. * File containing the ezcArchiveEmptyException class.
  4. *
  5. * @package Archive
  6. * @version //autogentag//
  7. * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
  8. * @license http://ez.no/licenses/new_bsd New BSD License
  9. */
  10. /**
  11. * Exception for when an archive is empty.
  12. *
  13. * @package Archive
  14. * @version //autogentag//
  15. */
  16. class ezcArchiveEmptyException extends ezcArchiveException
  17. {
  18. /**
  19. * Constructs a new exception for empty archive.
  20. */
  21. public function __construct()
  22. {
  23. parent::__construct( "The archive is empty." );
  24. }
  25. }
  26. ?>