php-ml/src/Phpml/Exception/InvalidArgumentException.php
2016-04-04 22:38:51 +02:00

18 lines
290 B
PHP

<?php
declare(strict_types = 1);
namespace Phpml\Exception;
class InvalidArgumentException extends \Exception
{
/**
* @return InvalidArgumentException
*/
public static function sizeNotMatch()
{
return new self('Size of given arguments not match');
}
}