forInvalidFile()
forInvalidFile(\CodeIgniter\Exceptions\string $path)
Parameters
\CodeIgniter\Exceptions\string | $path |
Model Exceptions.
A collection of exceptions thrown by the framework that can only be determined at run time.
<?php namespace CodeIgniter\Exceptions;
/**
* Model Exceptions.
*/
class ModelException extends FrameworkException
{
public static function forNoPrimaryKey(string $modelName)
{
return new static(lang('Database.noPrimaryKey', [$modelName]));
}
public static function forNoDateFormat(string $modelName)
{
return new static(lang('Database.noDateFormat', [$modelName]));
}
}