author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 7 | cf61fcea0001 |
permissions | -rw-r--r-- |
<?php /** * Exception for 305 Use Proxy responses * * @package Requests */ /** * Exception for 305 Use Proxy responses * * @package Requests */ class Requests_Exception_HTTP_305 extends Requests_Exception_HTTP { /** * HTTP status code * * @var integer */ protected $code = 305; /** * Reason phrase * * @var string */ protected $reason = 'Use Proxy'; }