10 lines
165 B
PHP
10 lines
165 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\Log\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
class InvalidLoglevelException extends RuntimeException implements LogExceptionInterface
|
||
|
|
{
|
||
|
|
}
|