Completed
Push — feature/controller ( 5a6415...9e7a26 )
by René
07:43 queued 05:40
created

ConfigurationNonexistentException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 8
ccs 0
cts 0
cp 0
1
<?php
2
declare(strict_types = 1);
3
4
namespace Zortje\MVC\Configuration\Exception;
5
6
use Zortje\MVC\Common\Exception\Exception;
7
8
/**
9
 * Class ConfigurationNonexistentException
10
 *
11
 * @package Zortje\MVC\Configuration\Exception
12
 */
13
class ConfigurationNonexistentException extends Exception
14
{
15
16
    /**
17
     * {@inheritdoc}
18
     */
19
    protected $template = 'Configuration %s is nonexistent';
20
}
21