* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Translation\Factory; use Exception; /** * Thrown if no provider is found for the selected identifier. */ class ProviderNotFoundException extends Exception { public function __construct($identifier) { parent::__construct(sprintf('The provider with the identifier %s is not found.', $identifier), 0, null); } }