Source for file BadXMLConfigFileException.php

Documentation is available at BadXMLConfigFileException.php

  1. <?php
  2. /**
  3. * Exception lancé quand la configuration est mal remplie.
  4. * La fichier de configuration est invalide, vérifier le path
  5. * Exception code 402
  6. *
  7. * PHP versions 5
  8. @category  PHP
  9. @package   GeoPrisma
  10. @author    Pascal Martin
  11. @copyright 2009, Boreal - Information Strategies
  12. @license   http://www.geoprisma.org/license BSD License
  13. @link      http://www.geoprisma.org
  14. */
  15.  
  16. /**
  17. * Exception lancé quand la configuration est mal remplie.
  18. * La fichier de configuration est invalide, vérifier le path
  19. * Exception code 402
  20. *  
  21. @category   PHP
  22. @package    GeoPrisma
  23. @subpackage Exception
  24. @author     Pascal Martin
  25. */
  26. {
  27.     /**
  28.     * @var string 
  29.     */
  30.     private $m_strFilePath '';
  31.     
  32.     /**
  33.     * Construit une nouvelle instance de org_geoprisma_exception_BadXMLConfigFile
  34.     * 
  35.     * @param string $pstrFilePath File path
  36.     * @param string $pstrMessage  Message d'erreur
  37.     * 
  38.     * @return org_geoprisma_exception_BadXMLConfigFile 
  39.     */
  40.     public function __construct($pstrFilePath$pstrMessage)
  41.     {   
  42.         com_borealis_foundation_util_Assert::assertIsString($pstrFilePath);
  43.         com_borealis_foundation_util_Assert::assertIsString($pstrMessage)
  44.            
  45.         parent::__construct($pstrMessage402);
  46.         $this->m_strFilePath $pstrFilePath;
  47.     }   
  48.     
  49.     /**
  50.     * Return the file path
  51.     * 
  52.     * @return string 
  53.     */
  54.     public function getFilePath()
  55.     {
  56.         return $this->m_strFilePath;
  57.     }
  58. }
  59.   
  60. ?>

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