Source for file LayoutNotFoundException.php

Documentation is available at LayoutNotFoundException.php

  1. <?php
  2. /**
  3. * Exception lancĂ© quand un layout demander n'existe pas
  4. * Exception code 404
  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 layout demander n'existe pas
  17. * Exception code 404
  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_LayoutNotFoundException
  27.     * 
  28.     * @param string $pstrLayout Nom du layout rechercher
  29.     * 
  30.     * @return org_geoprisma_exception_LayoutNotFoundException 
  31.     */
  32.     public function __construct($pstrLayout)
  33.     {   
  34.         com_borealis_foundation_util_Assert::assertIsString($pstrLayout);
  35.              
  36.         parent::__construct("Layout Not found : $pstrLayout"404);
  37.     }   
  38. }
  39.   
  40. ?>

Documentation generated on Mon, 20 Feb 2012 13:46:23 -0500 by phpDocumentor 1.4.1