Blame view

framework/security/PermissionFailureException.php 356 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  /**
   * Throw this exception to register that a user doesn't have permission to do the given action
   * and potentially redirect them to the log-in page.  The exception message may be presented to the
   * user, so it shouldn't be in nerd-speak.
   *
   * @package framework
   * @subpackage security
   */
  class PermissionFailureException extends Exception {
  
  }