Completed
Push — develop ( 7f4a0b...601ff8 )
by Arkadiusz
03:21
created

NormalizerException   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 3
Bugs 0 Features 2
Metric Value
wmc 2
c 3
b 0
f 2
lcom 0
cbo 0
dl 0
loc 18
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A unknownNorm() 0 4 1
A fitNotAllowed() 0 4 1
1
<?php
2
3
declare (strict_types = 1);
4
5
namespace Phpml\Exception;
6
7
class NormalizerException extends \Exception
8
{
9
    /**
10
     * @return NormalizerException
11
     */
12
    public static function unknownNorm()
13
    {
14
        return new self('Unknown norm supplied.');
15
    }
16
17
    /**
18
     * @return NormalizerException
19
     */
20
    public static function fitNotAllowed()
21
    {
22
        return new self('Fit is not allowed for this preprocessor.');
23
    }
24
}
25