This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/library/intl/src/Exception/UnknownLanguageException.php
2014-12-30 20:29:31 +01:00

12 lines
251 B
PHP

<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an unknown language code is passed to the
* LanguageRepository.
*/
class UnknownLanguageException extends InvalidArgumentException implements ExceptionInterface
{
}