age collapsing has-emoji"> 30f7226d9a first commit 2 years ago tailwind-color-palette 30f7226d9a first commit 2 years ago tailwindcss 30f7226d9a first commit 2 years ago thenify 30f7226d9a first commit 2 years ago thenify-all 30f7226d9a first commit 2 years ago to-regex-range 30f7226d9a first commit 2 years ago tr46 30f7226d9a first commit 2 years ago ts-interface-checker 30f7226d9a first commit 2 years ago uglify-js 30f7226d9a first commit 2 years ago underscore 30f7226d9a first commit 2 years ago upper-case 30f7226d9a first commit 2 years ago util-deprecate 30f7226d9a first commit 2 years ago valid-data-url 30f7226d9a first commit 2 years ago web-resource-inliner 30f7226d9a first commit 2 years ago webidl-conversions 30f7226d9a first commit 2 years ago whatwg-url 30f7226d9a first commit 2 years ago wrap-ansi 30f7226d9a first commit 2 years ago wrappy 30f7226d9a first commit 2 years ago y18n 30f7226d9a first commit 2 years ago yallist 30f7226d9a first commit 2 years ago yaml 30f7226d9a first commit 2 years ago yargs 30f7226d9a first commit 2 years ago yargs-parser 30f7226d9a first commit 2 years ago .yarn-integrity 30f7226d9a first commit 2 years ago tum/whitesports - Gogs: Simplico Git Service

Нет описания

400.php 388B

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