title="Sat, 16 Sep 2023 07:03:00 UTC">2 anos atrás supports-preserve-symlinks-flag 30f7226d9a first commit 2 anos atrás tailwind-color-palette 30f7226d9a first commit 2 anos atrás tailwindcss 30f7226d9a first commit 2 anos atrás thenify 30f7226d9a first commit 2 anos atrás thenify-all 30f7226d9a first commit 2 anos atrás to-regex-range 30f7226d9a first commit 2 anos atrás tr46 30f7226d9a first commit 2 anos atrás ts-interface-checker 30f7226d9a first commit 2 anos atrás uglify-js 30f7226d9a first commit 2 anos atrás underscore 30f7226d9a first commit 2 anos atrás upper-case 30f7226d9a first commit 2 anos atrás util-deprecate 30f7226d9a first commit 2 anos atrás valid-data-url 30f7226d9a first commit 2 anos atrás web-resource-inliner 30f7226d9a first commit 2 anos atrás webidl-conversions 30f7226d9a first commit 2 anos atrás whatwg-url 30f7226d9a first commit 2 anos atrás wrap-ansi 30f7226d9a first commit 2 anos atrás wrappy 30f7226d9a first commit 2 anos atrás y18n 30f7226d9a first commit 2 anos atrás yallist 30f7226d9a first commit 2 anos atrás yaml 30f7226d9a first commit 2 anos atrás yargs 30f7226d9a first commit 2 anos atrás yargs-parser 30f7226d9a first commit 2 anos atrás .yarn-integrity 30f7226d9a first commit 2 anos atrás tum/whitesports - Gogs: Simplico Git Service

Keine Beschreibung

502.php 388B

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