mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
14 lines
254 B
PHP
14 lines
254 B
PHP
|
<?php namespace CodeIgniter\Exceptions;
|
||
|
|
||
|
/**
|
||
|
* Model Exceptions.
|
||
|
*/
|
||
|
|
||
|
class ModelException extends FrameworkException
|
||
|
{
|
||
|
public static function forNoPrimaryKey(string $modelName)
|
||
|
{
|
||
|
return new static(lang('Database.noPrimaryKey', [$modelName]));
|
||
|
}
|
||
|
}
|