Files
app
assets
public
vendor
alexgarrett
composer
danielstjules
doctrine
hassankhan
illuminate
nesbot
slim
symfony
translation
Catalogue
DataCollector
Dumper
Exception
ExceptionInterface.php
InvalidResourceException.php
NotFoundResourceException.php
Extractor
Loader
Tests
Writer
CHANGELOG.md
DataCollectorTranslator.php
IdentityTranslator.php
Interval.php
LICENSE
LoggingTranslator.php
MessageCatalogue.php
MessageCatalogueInterface.php
MessageSelector.php
MetadataAwareInterface.php
PluralizationRules.php
README.md
Translator.php
TranslatorBagInterface.php
TranslatorInterface.php
composer.json
phpunit.xml.dist
twig
autoload.php
.gitignore
README.md
composer.json
composer.lock
composer.phar
mode.php
website/vendor/symfony/translation/Exception/NotFoundResourceException.php

24 lines
503 B
PHP
Executable File

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Translation\Exception;
/**
* Thrown when a resource does not exist.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
*/
class NotFoundResourceException extends \InvalidArgumentException implements ExceptionInterface
{
}