partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

OnlySingleRootNodeAllowedException.php (299B)


      1 <?php
      2 
      3 namespace PartKeepr\CategoryBundle\Exception;
      4 
      5 class OnlySingleRootNodeAllowedException extends \Exception
      6 {
      7     public function __construct($message = '', $code = 0, \Exception $previous = null)
      8     {
      9         parent::__construct('There may be only one root node', $code, $previous);
     10     }
     11 }