mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 03:39:56 +09:00
27 lines
No EOL
399 B
PHP
Executable file
27 lines
No EOL
399 B
PHP
Executable file
<?php
|
|
/**
|
|
* Exception for 504 Gateway Timeout responses
|
|
*
|
|
* @package Requests
|
|
*/
|
|
|
|
/**
|
|
* Exception for 504 Gateway Timeout responses
|
|
*
|
|
* @package Requests
|
|
*/
|
|
class Requests_Exception_HTTP_504 extends Requests_Exception_HTTP {
|
|
/**
|
|
* HTTP status code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 504;
|
|
|
|
/**
|
|
* Reason phrase
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $reason = 'Gateway Timeout';
|
|
} |