You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

forbiddenexception.php 378B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace OC;
  9. /**
  10. * Exception thrown whenever access to a resource has
  11. * been forbidden or whenever a user isn't authenticated.
  12. */
  13. class ForbiddenException extends \Exception {
  14. }