UnauthorizedProjectException.class.php 772 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Custom exception when a user tries to access a project they don't have access to
  4. *
  5. * @author Christopher Han <xiphux@gmail.com>
  6. * @copyright Copyright (c) 2012 Christopher Han
  7. * @package GitPHP
  8. * @subpackage Exception
  9. */
  10. class GitPHP_UnauthorizedProjectException extends GitPHP_MessageException
  11. {
  12. /**
  13. * Specified project
  14. *
  15. * @var string
  16. */
  17. public $Project;
  18. /**
  19. * Constructor
  20. *
  21. * @param string $project project
  22. * @param string $message message
  23. * @param int $code code
  24. */
  25. public function __construct($project, $message = '', $code = 0)
  26. {
  27. $this->Project = $project;
  28. if (empty($message))
  29. $message = sprintf('You are not authorized to access project %1$s', $project);
  30. parent::__construct($message, true, 403, $code);
  31. }
  32. }