"> SH.js 77628cf8bf first comm пре 3 година SI.js 77628cf8bf first comm пре 3 година SK.js 77628cf8bf first comm пре 3 година SL.js 77628cf8bf first comm пре 3 година SM.js 77628cf8bf first comm пре 3 година SN.js 77628cf8bf first comm пре 3 година SO.js 77628cf8bf first comm пре 3 година SR.js 77628cf8bf first comm пре 3 година ST.js 77628cf8bf first comm пре 3 година SV.js 77628cf8bf first comm пре 3 година SY.js 77628cf8bf first comm пре 3 година SZ.js 77628cf8bf first comm пре 3 година TC.js 77628cf8bf first comm пре 3 година TD.js 77628cf8bf first comm пре 3 година TG.js 77628cf8bf first comm пре 3 година TH.js 77628cf8bf first comm пре 3 година TJ.js 77628cf8bf first comm пре 3 година TK.js 77628cf8bf first comm пре 3 година TL.js 77628cf8bf first comm пре 3 година TM.js 77628cf8bf first comm пре 3 година TN.js 77628cf8bf first comm пре 3 година TO.js 77628cf8bf first comm пре 3 година TR.js 77628cf8bf first comm пре 3 година TT.js 77628cf8bf first comm пре 3 година TV.js 77628cf8bf first comm пре 3 година TW.js 77628cf8bf first comm пре 3 година TZ.js 77628cf8bf first comm пре 3 година UA.js 77628cf8bf first comm пре 3 година UG.js 77628cf8bf first comm пре 3 година US.js 77628cf8bf first comm пре 3 година UY.js 77628cf8bf first comm пре 3 година UZ.js 77628cf8bf first comm пре 3 година VA.js 77628cf8bf first comm пре 3 година VC.js 77628cf8bf first comm пре 3 година VE.js 77628cf8bf first comm пре 3 година VG.js 77628cf8bf first comm пре 3 година VI.js 77628cf8bf first comm пре 3 година VN.js 77628cf8bf first comm пре 3 година VU.js 77628cf8bf first comm пре 3 година WF.js 77628cf8bf first comm пре 3 година WS.js 77628cf8bf first comm пре 3 година YE.js 77628cf8bf first comm пре 3 година YT.js 77628cf8bf first comm пре 3 година ZA.js 77628cf8bf first comm пре 3 година ZM.js 77628cf8bf first comm пре 3 година ZW.js 77628cf8bf first comm пре 3 година alt-af.js 77628cf8bf first comm пре 3 година alt-an.js 77628cf8bf first comm пре 3 година alt-as.js 77628cf8bf first comm пре 3 година alt-eu.js 77628cf8bf first comm пре 3 година alt-na.js 77628cf8bf first comm пре 3 година alt-oc.js 77628cf8bf first comm пре 3 година alt-sa.js 77628cf8bf first comm пре 3 година alt-ww.js 77628cf8bf first comm пре 3 година tum/whitesports - Gogs: Simplico Git Service

Aucune description

407.php 442B

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