partkeepr

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

PackagingUnitOutOfRangeException.php (306B)


      1 <?php
      2 
      3 namespace PartKeepr\PartBundle\Exceptions;
      4 
      5 use PartKeepr\CoreBundle\Exceptions\TranslatableException;
      6 
      7 class PackagingUnitOutOfRangeException extends TranslatableException
      8 {
      9     public function getMessageKey()
     10     {
     11         return 'Packaging Unit is out of range. It must be 1 or higher.';
     12     }
     13 }