Passed
Push — master ( f4255a...129279 )
by Eric
02:08
created

NumverifyApiResponseException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 2
b 0
f 0
nc 1
nop 1
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file is part of the Numverify API Client for PHP.
7
 *
8
 * (c) 2024 Eric Sizemore <[email protected]>
9
 * (c) 2018-2021 Mark Rogoyski <[email protected]>
10
 *
11
 * @license The MIT License
12
 *
13
 * For the full copyright and license information, please view the LICENSE.md
14
 * file that was distributed with this source code.
15
 */
16
17
namespace Numverify\Exception;
18
19
use RuntimeException;
20
21
/**
22
 * Thrown when the Numverify API returns an API response that is unexpected.
23
 */
24
class NumverifyApiResponseException extends RuntimeException {}
25