Completed
Pull Request — master (#1)
by Harry
03:02
created

ConfigurationException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 5
Ratio 100 %
Metric Value
dl 5
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 3
1
<?php
2
3
namespace Graze\DogStatsD\Exception;
4
5
use Exception;
6
use Graze\DogStatsD\Client;
7
8
/**
9
 * Configuration Exception Class
10
 */
11
class ConfigurationException extends RuntimeException
12
{
13
}
14