partkeepr

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

UserProtectedException.php (274B)


      1 <?php
      2 
      3 namespace PartKeepr\AuthBundle\Exceptions;
      4 
      5 use PartKeepr\CoreBundle\Exceptions\TranslatableException;
      6 
      7 class UserProtectedException extends TranslatableException
      8 {
      9     public function getMessageKey()
     10     {
     11         return 'User is protected against changes';
     12     }
     13 }