identifier = $identifier; if (empty($locale) && empty($fallbackLocale)) { $this->locale = ''; $this->fallbackLocale = ''; $message = "Unable to find the data file '{$identifier}'"; } else { $this->locale = $locale; $this->fallbackLocale = $fallbackLocale; if (@strcasecmp($locale, $fallbackLocale) === 0) { $message = "Unable to find the data file '{$identifier}' for '{$locale}'"; } else { $message = "Unable to find the data file '{$identifier}', neither for '{$locale}' nor for '{$fallbackLocale}'"; } } parent::__construct($message, \Punic\Exception::DATA_FILE_NOT_FOUND, $previous); } /** * Retrieves the bad data file identifier. * * @return string */ public function getIdentifier() { return $this->identifier; } /** * Retrieves the preferred locale. * * @return string */ public function getLocale() { return $this->locale; } /** * Retrieves the fallback locale. * * @return string */ public function getFallbackLocale() { return $this->fallbackLocale; } }