Completed
Push — master ( 4ee661...cccce7 )
by Ryuichi
03:25 queued 01:53
created

CsrfException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
namespace WebStream\Exception\Extend;
3
4
use WebStream\Exception\ApplicationException;
5
6
/**
7
 * CsrfException
8
 * @author Ryuichi TANAKA.
9
 * @since 2013/10/20
10
 * @version 0.4
11
 */
12
class CsrfException extends ApplicationException
13
{
14
    /**
15
     * constructor
16
     */
17
    public function __construct($message = null)
18
    {
19
        parent::__construct($message, 400, $this);
20
    }
21
}
22