s/caniuse-lite/data/regions/RS.js">RS.js 77628cf8bf first comm 3 yıl önce RU.js 77628cf8bf first comm 3 yıl önce RW.js 77628cf8bf first comm 3 yıl önce SA.js 77628cf8bf first comm 3 yıl önce SB.js 77628cf8bf first comm 3 yıl önce SC.js 77628cf8bf first comm 3 yıl önce SD.js 77628cf8bf first comm 3 yıl önce SE.js 77628cf8bf first comm 3 yıl önce SG.js 77628cf8bf first comm 3 yıl önce SH.js 77628cf8bf first comm 3 yıl önce SI.js 77628cf8bf first comm 3 yıl önce SK.js 77628cf8bf first comm 3 yıl önce SL.js 77628cf8bf first comm 3 yıl önce SM.js 77628cf8bf first comm 3 yıl önce SN.js 77628cf8bf first comm 3 yıl önce SO.js 77628cf8bf first comm 3 yıl önce SR.js 77628cf8bf first comm 3 yıl önce ST.js 77628cf8bf first comm 3 yıl önce SV.js 77628cf8bf first comm 3 yıl önce SY.js 77628cf8bf first comm 3 yıl önce SZ.js 77628cf8bf first comm 3 yıl önce TC.js 77628cf8bf first comm 3 yıl önce TD.js 77628cf8bf first comm 3 yıl önce TG.js 77628cf8bf first comm 3 yıl önce TH.js 77628cf8bf first comm 3 yıl önce TJ.js 77628cf8bf first comm 3 yıl önce TK.js 77628cf8bf first comm 3 yıl önce TL.js 77628cf8bf first comm 3 yıl önce TM.js 77628cf8bf first comm 3 yıl önce TN.js 77628cf8bf first comm 3 yıl önce TO.js 77628cf8bf first comm 3 yıl önce TR.js 77628cf8bf first comm 3 yıl önce TT.js 77628cf8bf first comm 3 yıl önce TV.js 77628cf8bf first comm 3 yıl önce TW.js 77628cf8bf first comm 3 yıl önce TZ.js 77628cf8bf first comm 3 yıl önce UA.js 77628cf8bf first comm 3 yıl önce UG.js 77628cf8bf first comm 3 yıl önce US.js 77628cf8bf first comm 3 yıl önce UY.js 77628cf8bf first comm 3 yıl önce UZ.js 77628cf8bf first comm 3 yıl önce VA.js 77628cf8bf first comm 3 yıl önce VC.js 77628cf8bf first comm 3 yıl önce VE.js 77628cf8bf first comm 3 yıl önce VG.js 77628cf8bf first comm 3 yıl önce VI.js 77628cf8bf first comm 3 yıl önce VN.js 77628cf8bf first comm 3 yıl önce VU.js 77628cf8bf first comm 3 yıl önce WF.js 77628cf8bf first comm 3 yıl önce WS.js 77628cf8bf first comm 3 yıl önce YE.js 77628cf8bf first comm 3 yıl önce YT.js 77628cf8bf first comm 3 yıl önce ZA.js 77628cf8bf first comm 3 yıl önce ZM.js 77628cf8bf first comm 3 yıl önce ZW.js 77628cf8bf first comm 3 yıl önce alt-af.js 77628cf8bf first comm 3 yıl önce alt-an.js 77628cf8bf first comm 3 yıl önce alt-as.js 77628cf8bf first comm 3 yıl önce alt-eu.js 77628cf8bf first comm 3 yıl önce alt-na.js 77628cf8bf first comm 3 yıl önce alt-oc.js 77628cf8bf first comm 3 yıl önce alt-sa.js 77628cf8bf first comm 3 yıl önce alt-ww.js 77628cf8bf first comm 3 yıl önce tum/whitesports - Gogs: Simplico Git Service

Keine Beschreibung

408.php 400B

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