Completed
Push — master ( f0448f...4201d1 )
by Julien
14s
created

ContainerProjectDirEnvVariableEmptyException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace TheAentMachine\AentDockerCompose\Aenthill\Exception;
3
4
use TheAentMachine\AentDockerCompose\Aenthill\Enum\PheromoneEnum;
5
6
class ContainerProjectDirEnvVariableEmptyException extends AenthillException
7
{
8
    /**
9
     * ContainerProjectDirNotFoundException constructor.
10
     */
11
    public function __construct()
12
    {
13
        parent::__construct('environment variable ' . PheromoneEnum::PHEROMONE_CONTAINER_PROJECT_DIR . ' is empty');
14
    }
15
}
16