373a32f0105202eebb7/app/node_modules/sucrase">sucrase 30f7226d9a first commit 2 vuotta sitten supports-preserve-symlinks-flag 30f7226d9a first commit 2 vuotta sitten tailwind-color-palette 30f7226d9a first commit 2 vuotta sitten tailwindcss 30f7226d9a first commit 2 vuotta sitten thenify 30f7226d9a first commit 2 vuotta sitten thenify-all 30f7226d9a first commit 2 vuotta sitten to-regex-range 30f7226d9a first commit 2 vuotta sitten tr46 30f7226d9a first commit 2 vuotta sitten ts-interface-checker 30f7226d9a first commit 2 vuotta sitten uglify-js 30f7226d9a first commit 2 vuotta sitten underscore 30f7226d9a first commit 2 vuotta sitten upper-case 30f7226d9a first commit 2 vuotta sitten util-deprecate 30f7226d9a first commit 2 vuotta sitten valid-data-url 30f7226d9a first commit 2 vuotta sitten web-resource-inliner 30f7226d9a first commit 2 vuotta sitten webidl-conversions 30f7226d9a first commit 2 vuotta sitten whatwg-url 30f7226d9a first commit 2 vuotta sitten wrap-ansi 30f7226d9a first commit 2 vuotta sitten wrappy 30f7226d9a first commit 2 vuotta sitten y18n 30f7226d9a first commit 2 vuotta sitten yallist 30f7226d9a first commit 2 vuotta sitten yaml 30f7226d9a first commit 2 vuotta sitten yargs 30f7226d9a first commit 2 vuotta sitten yargs-parser 30f7226d9a first commit 2 vuotta sitten .yarn-integrity 30f7226d9a first commit 2 vuotta sitten tum/whitesports - Gogs: Simplico Git Service

Açıklama Yok

403.php 382B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Exception for 403 Forbidden responses
  4. *
  5. * @package Requests
  6. */
  7. /**
  8. * Exception for 403 Forbidden responses
  9. *
  10. * @package Requests
  11. */
  12. class Requests_Exception_HTTP_403 extends Requests_Exception_HTTP {
  13. /**
  14. * HTTP status code
  15. *
  16. * @var integer
  17. */
  18. protected $code = 403;
  19. /**
  20. * Reason phrase
  21. *
  22. * @var string
  23. */
  24. protected $reason = 'Forbidden';
  25. }