22 lines
307 B
PHP
22 lines
307 B
PHP
<?php namespace CodeIgniter\Exceptions;
|
|
|
|
/**
|
|
* Exception for automatic logging.
|
|
*/
|
|
|
|
class ConfigException extends CriticalError
|
|
{
|
|
|
|
/**
|
|
* Error code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 3;
|
|
|
|
public static function forDisabledMigrations()
|
|
{
|
|
throw new static(lang('Migrations.disabled'));
|
|
}
|
|
}
|