php-ml/src/Exception/NormalizerException.php

16 lines
235 B
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
namespace Phpml\Exception;
use Exception;
class NormalizerException extends Exception
{
public static function unknownNorm(): self
{
return new self('Unknown norm supplied.');
}
}