TestException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 0
c 1
b 1
f 0
lcom 0
cbo 0
dl 0
loc 3
1
<?php
2
/**
3
 * This file is part of phpab/phpab. (https://github.com/phpab/phpab)
4
 *
5
 * @link https://github.com/phpab/phpab for the canonical source repository
6
 * @copyright Copyright (c) 2015-2016 phpab. (https://github.com/phpab/)
7
 * @license https://raw.githubusercontent.com/phpab/phpab/master/LICENSE.md MIT
8
 */
9
10
namespace PhpAb\Exception;
11
12
use Exception as BaseException;
13
14
/**
15
 * The base class for exceptions within phpab.
16
 *
17
 * @package PhpAb
18
 */
19
class TestException extends BaseException
20
{
21
}
22