Passed
Push — master ( efd2b3...249e4d )
by Marcel
02:26
created

ClientCouldNotBeDiscoveredException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
/*
4
 * This file is part of the SaasProviderBundle package.
5
 * (c) Fluxter <http://fluxter.net/>
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Fluxter\SaasProviderBundle\Model\Exception;
11
12
use Exception;
13
14
class ClientCouldNotBeDiscoveredException extends Exception
15
{
16
    public function __construct() {
17
        parent::__construct("The client was not provided and could not be determinded by the request!");
18
    }
19
}