]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Intl\Exception; | |
13 | ||
14 | /** | |
15 | * Base exception class for not implemented behaviors of the intl extension in the Locale component. | |
16 | * | |
17 | * @author Eriksen Costa <eriksen.costa@infranology.com.br> | |
18 | */ | |
19 | class NotImplementedException extends RuntimeException | |
20 | { | |
21 | const INTL_INSTALL_MESSAGE = 'Please install the "intl" extension for full localization capabilities.'; | |
22 | ||
23 | /** | |
24 | * Constructor | |
25 | * | |
26 | * @param string $message The exception message. A note to install the intl extension is appended to this string | |
27 | */ | |
28 | public function __construct($message) | |
29 | { | |
30 | parent::__construct($message.' '.self::INTL_INSTALL_MESSAGE); | |
31 | } | |
32 | } |