Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
NormalizerException
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 unknownNorm
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
<?php
declare (strict_types = 1);
namespace Phpml\Exception;
class NormalizerException extends \Exception
{
    /**
     * @return NormalizerException
     */
    public static function unknownNorm()
    {
        return new self('Unknown norm supplied.');
    }
}