partkeepr

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

UserLimitReachedException.php (346B)


      1 <?php
      2 
      3 namespace PartKeepr\AuthBundle\Exceptions;
      4 
      5 use PartKeepr\CoreBundle\Exceptions\TranslatableException;
      6 
      7 /**
      8  * Is thrown when the configured user limit is reached.
      9  */
     10 class UserLimitReachedException extends TranslatableException
     11 {
     12     public function getMessageKey()
     13     {
     14         return 'The maximum number of users is reached';
     15     }
     16 }