14 lines
290 B
PHP
14 lines
290 B
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2023 Roland Rusch, easy-smart solution GmbH <roland.rusch@easy-smart.ch>
|
||
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
*/
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Components\I18n\Exception;
|
||
|
|
|
||
|
|
class LocaleNotSetException extends \RuntimeException
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|