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

ConfigurationException::getInstance()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %
Metric Value
dl 4
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
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