/home/techb158/immovalet.com/vendor/symfony/polyfill-intl-icu/Exception
NameSizeModeActions
ExceptionInterface.php4510644editdlrm
MethodArgumentNotImplementedException.php8350644editdlrm
MethodArgumentValueNotImplementedException.php12350644editdlrm
MethodNotImplementedException.php6450644editdlrm
NotImplementedException.php8970644editdlrm
RuntimeException.php4750644editdlrm
Edit: /home/techb158/immovalet.com/vendor/symfony/polyfill-intl-icu/Exception/NotImplementedException.php (897B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Intl\Icu\Exception; /** * Base exception class for not implemented behaviors of the intl extension in the Locale component. * * @author Eriksen Costa */ class NotImplementedException extends RuntimeException { public const INTL_INSTALL_MESSAGE = 'Please install the "intl" extension for full localization capabilities.'; /** * @param string $message The exception message. A note to install the intl extension is appended to this string */ public function __construct(string $message) { parent::__construct($message.' '.self::INTL_INSTALL_MESSAGE); } }