CodeIgniter4/system/Exceptions/ModelException.php

14 lines
254 B
PHP
Raw Normal View History

<?php namespace CodeIgniter\Exceptions;
/**
* Model Exceptions.
*/
class ModelException extends FrameworkException
{
public static function forNoPrimaryKey(string $modelName)
{
return new static(lang('Database.noPrimaryKey', [$modelName]));
}
}