Completed
Push — master ( e01736...ba6a43 )
by Adam
04:12
created

NoValidCountryException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 3
ccs 1
cts 1
cp 1
1
<?php
2
/**
3
 * NoValidCountryException.php
4
 *
5
 * @copyright      More in license.md
6
 * @license        http://www.ipublikuj.eu
7
 * @author         Adam Kadlec <[email protected]>
8
 * @package        iPublikuj:FormPhone!
9
 * @subpackage     Exceptions
10
 * @since          1.0
11
 *
12
 * @date           17.12.15
13
 */
14
15
namespace IPub\FormPhone\Exceptions;
16
17
class NoValidCountryException extends \Exception
18 1
{
19
}
20