13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
|
|
namespace NoccyLabs\Dataset;
|
|
|
|
use RuntimeException;
|
|
|
|
class UnknownDatasetException extends RuntimeException
|
|
{
|
|
public static function DatasetNotFound(): self
|
|
{
|
|
return new UnknownDatasetException("The requested dataset is not available");
|
|
}
|
|
} |