partkeepr

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

NotAMetaPartException.php (271B)


      1 <?php
      2 
      3 namespace PartKeepr\PartBundle\Exceptions;
      4 
      5 class NotAMetaPartException extends \RuntimeException
      6 {
      7     public function __construct()
      8     {
      9         parent::__construct("Attempted to retrieve parts for a meta part, but the given part is not a meta part!");
     10     }
     11 }