]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - includes/Requests/Requests/Exception/HTTP/401.php
Add Requests 1.6
[Github/YOURLS.git] / includes / Requests / Requests / Exception / HTTP / 401.php
1 <?php
2 /**
3  * Exception for 401 Unauthorized responses
4  *
5  * @package Requests
6  */
7
8 /**
9  * Exception for 401 Unauthorized responses
10  *
11  * @package Requests
12  */
13 class Requests_Exception_HTTP_401 extends Requests_Exception_HTTP {
14         /**
15          * HTTP status code
16          *
17          * @var integer
18          */
19         protected $code = 401;
20
21         /**
22          * Reason phrase
23          *
24          * @var string
25          */
26         protected $reason = 'Unauthorized';
27 }