Completed
Push — develop ( 9f140d...7abee3 )
by Arkadiusz
02:42
created

DatasetException::missingFolder()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
declare (strict_types = 1);
4
5
namespace Phpml\Exception;
6
7
class DatasetException extends \Exception
8
{
9
    /**
10
     * @return DatasetException
11
     */
12
    public static function missingFile($filepath)
13
    {
14
        return new self(sprintf('Dataset file "%s" missing.', $filepath));
15
    }
16
17
    /**
18
     * @return DatasetException
19
     */
20
    public static function missingFolder($path)
21
    {
22
        return new self(sprintf('Dataset root folder "%s" missing.', $path));
23
    }
24
25
    public static function cantOpenFile($filepath)
26
    {
27
        return new self(sprintf('Dataset file "%s" can\'t be open.', $filepath));
28
    }
29
}
30