You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
<?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]));
|
|
}
|
|
}
|
|
|