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

Açıklama Yok

406.php 397B

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