WpOrg\Requests\Exception\Http

Status500{}WP 1.0

Exception for 500 Internal Server Error responses

Хуков нет.

Использование

$Status500 = new Status500();
// use class methods

Методы

Нет Методов у класса.

Заметки

  • Пакет: Requests\Exceptions

Код Status500{} WP 6.6.2

final class Status500 extends Http {
	/**
	 * HTTP status code
	 *
	 * @var integer
	 */
	protected $code = 500;

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = 'Internal Server Error';
}