| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class HttpTokenException extends \yii\web\HttpException |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Constructor. |
||
| 9 | * @param integer $status HTTP status code, such as 404, 500, etc. |
||
| 10 | * @param string $message error message |
||
| 11 | * @param string $errorUri error uri |
||
| 12 | * @param integer $code error code |
||
| 13 | * @param \Exception $previous The previous exception used for the exception chaining. |
||
| 14 | */ |
||
| 15 | 3 | public function __construct( |
|
| 25 |