Source for file DatastoreNotFoundException.php

Documentation is available at DatastoreNotFoundException.php

  1. <?php
  2. /**
  3. * Exception lancĂ© quand un datastore demander n'existe pas
  4. * Exception code 403
  5. *
  6. * PHP versions 5
  7. @category  PHP
  8. @package   GeoPrisma
  9. @author    Pascal Martin
  10. @copyright 2009, Boreal - Information Strategies
  11. @license   http://www.geoprisma.org/license BSD License
  12. @link      http://www.geoprisma.org
  13. */
  14.  
  15. /**
  16. * Exception lancĂ© quand un datastore demander n'existe pas
  17. * Exception code 403
  18. *  
  19. @category   PHP
  20. @package    GeoPrisma
  21. @subpackage Exception
  22. @author     Pascal Martin
  23. */
  24. {
  25.     /**
  26.     * Construit une nouvelle instance de org_geoprisma_exception_DatastoreNotFoundException
  27.     * 
  28.     * @param string $pstrDatastore Nom du datastore rechercher
  29.     * 
  30.     * @return org_geoprisma_exception_DatastoreNotFoundException 
  31.     */
  32.     public function __construct($pstrDatastore)
  33.     {   
  34.         com_borealis_foundation_util_Assert::assertIsString($pstrDatastore);
  35.              
  36.         parent::__construct("Datastore Not found : $pstrDatastore"403);
  37.     }   
  38. }
  39.   
  40. ?>

Documentation generated on Thu, 19 Jan 2012 00:08:27 +0400 by phpDocumentor 1.4.1