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

14 lines
345 B
PHP

<?php namespace CodeIgniter\Log\Exceptions;
use CodeIgniter\Exceptions\ExceptionInterface;
use CodeIgniter\Exceptions\FrameworkException;
class LogException extends FrameworkException implements ExceptionInterface
{
public static function forInvalidLogLevel(string $level)
{
return new static(lang('Log.invalidLogLevel', [$level]));
}
}