Newer
Older
framework / system / Exceptions / ModelException.php
@Jim Parry Jim Parry on 4 Apr 2019 254 bytes Release 4.0.0-beta.2
<?php namespace CodeIgniter\Exceptions;

/**
 * Model Exceptions.
 */

class ModelException extends FrameworkException
{
	public static function forNoPrimaryKey(string $modelName)
	{
		return new static(lang('Database.noPrimaryKey', [$modelName]));
	}
}