author | ymh <ymh.work@gmail.com> |
Wed, 16 Oct 2019 11:23:38 +0200 | |
changeset 14 | 00ac8f60d73f |
parent 7 | cf61fcea0001 |
child 18 | be944660c56a |
permissions | -rw-r--r-- |
<?php /** * Exception for 502 Bad Gateway responses * * @package Requests */ /** * Exception for 502 Bad Gateway responses * * @package Requests */ class Requests_Exception_HTTP_502 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 502; /** * Reason phrase * * @var string */ protected $reason = 'Bad Gateway'; }