li3_cldr\extensions\adapter\g11n\catalog\Cldr::_init()

protected method

Initializer. Checks if the configured path exists.

Returns

void

Source

	protected function _init() {
		parent::_init();
		if (!is_dir($this->_config['path'])) {
			throw new Exception("Cldr directory does not exist at `{$this->_config['path']}`");
		}
	}