Completed
Push — master ( 75ec1b...02ab52 )
by Carlos C
02:40
created

GenericOverrideException::create()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Eclipxe\Enum\Exceptions;
6
7
use OutOfRangeException;
8
use Throwable;
9
10
class GenericOverrideException extends OutOfRangeException implements EnumExceptionInterface
11
{
12
    protected const TYPE_NAME = '';
13
14 4
    public static function create(string $className, string $value, Throwable $previous = null)
15
    {
16
        // StatusEnum cannot override value to x
17 4
        return new static(sprintf('%s cannot override %s to %s', $className, static::TYPE_NAME, $value), 0, $previous);
18
    }
19
}
20