Newer
Older
framework / system / Exceptions / ModelException.php
@Jim Parry Jim Parry on 25 Jul 2019 387 bytes Release 4.0.0-beta.4
<?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]));
	}
}