Completed
Push — master ( 9fe7e8...7331b7 )
by Aurimas
12:47
created

RequestURITooLongException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4286
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Thruster\Component\Http\Exception;
4
5
/**
6
 * Class RequestURITooLongException
7
 *
8
 * @package Thruster\Component\Http\Exception
9
 * @author Aurimas Niekis <[email protected]>
10
 */
11
class RequestURITooLongException extends RequestException
12
{
13
    public function __construct()
14
    {
15
        $message = 'Request URI Too Long';
16
        
17
        parent::__construct(414, $message);
18
    }
19
}
20