php-ml/src/Phpml/Exception/DatasetException.php

14 lines
271 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Exception;
class DatasetException extends \Exception
{
public static function missingFolder(string $path) : DatasetException
{
return new self(sprintf('Dataset root folder "%s" missing.', $path));
}
}