Files
rpsls-game/system/Exceptions/ConfigException.php
2019-12-02 14:56:47 -06:00

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'));
}
}