10 lines
151 B
PHP
10 lines
151 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Components\I18n\Exception;
|
||
|
|
|
||
|
|
class LanguageNotInitializedException extends \RuntimeException
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|