run:R W Run
460 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
460 By
2026-03-11 16:18:52
R W Run
457 By
2026-03-11 16:18:52
R W Run
460 By
2026-03-11 16:18:52
R W Run
472 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
478 By
2026-03-11 16:18:52
R W Run
466 By
2026-03-11 16:18:52
R W Run
511 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
448 By
2026-03-11 16:18:52
R W Run
436 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
481 By
2026-03-11 16:18:52
R W Run
496 By
2026-03-11 16:18:52
R W Run
487 By
2026-03-11 16:18:52
R W Run
490 By
2026-03-11 16:18:52
R W Run
517 By
2026-03-11 16:18:52
R W Run
478 By
2026-03-11 16:18:52
R W Run
556 By
2026-03-11 16:18:52
R W Run
583 By
2026-03-11 16:18:52
R W Run
627 By
2026-03-11 16:18:52
R W Run
613 By
2026-03-11 16:18:52
R W Run
487 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
457 By
2026-03-11 16:18:52
R W Run
481 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
502 By
2026-03-11 16:18:52
R W Run
613 By
2026-03-11 16:18:52
R W Run
970 By
2026-03-11 16:18:52
R W Run
error_log
📄Status500.php
1<?php
2/**
3 * Exception for 500 Internal Server Error responses
4 *
5 * @package Requests\Exceptions
6 */
7
8namespace WpOrg\Requests\Exception\Http;
9
10use WpOrg\Requests\Exception\Http;
11
12/**
13 * Exception for 500 Internal Server Error responses
14 *
15 * @package Requests\Exceptions
16 */
17final class Status500 extends Http {
18 /**
19 * HTTP status code
20 *
21 * @var integer
22 */
23 protected $code = 500;
24
25 /**
26 * Reason phrase
27 *
28 * @var string
29 */
30 protected $reason = 'Internal Server Error';
31}
32