silverstripe-framework/src/Security/PermissionFailureException.php

16 lines
359 B
PHP
Raw Permalink Normal View History

<?php
2016-06-23 01:37:22 +02:00
namespace SilverStripe\Security;
use Exception;
/**
* 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.
*/
2016-11-29 00:31:16 +01:00
class PermissionFailureException extends Exception
{
2014-08-15 08:53:05 +02:00
}