Model/ModelException.php
changeset 42 0e57c730bb18
equal deleted inserted replaced
39:b403086580f7 42:0e57c730bb18
       
     1 <?php
       
     2 /*
       
     3  * This file is part of the WikiTagBundle package.
       
     4  *
       
     5  * (c) IRI <http://www.iri.centrepompidou.fr/>
       
     6  *
       
     7  * For the full copyright and license information, please view the LICENSE
       
     8  * file that was distributed with this source code.
       
     9  */
       
    10 namespace IRI\Bundle\WikiTagBundle\Model;
       
    11 
       
    12 class ModelException extends \Exception
       
    13 {
       
    14     /**
       
    15      * Construct exception
       
    16      * @param $message[optional]
       
    17      * @param $code[optional]
       
    18      * @param $previous[optional]
       
    19      */
       
    20     public function __construct($message=null, $code=null, $previous=null)
       
    21     {
       
    22         parent::__construct($message,$code,$previous);
       
    23     }
       
    24     
       
    25 }