partkeepr

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

MinStockLevelOutOfRangeException.php (331B)


      1 <?php
      2 
      3 namespace PartKeepr\PartBundle\Exceptions;
      4 
      5 use PartKeepr\CoreBundle\Exceptions\TranslatableException;
      6 
      7 class MinStockLevelOutOfRangeException extends TranslatableException
      8 {
      9     public function getMessageKey()
     10     {
     11         return 'Minimum Stock Level is out of range. The minimum stock level must be 0 or higher';
     12     }
     13 }