| 1 | <?php |
||
| 24 | class UnsupportedLanguageException extends RuntimeException |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Creates an exception for an unsupported language string. |
||
| 28 | * |
||
| 29 | * @param string $language The unsupported language. |
||
| 30 | * @param Exception|null $cause The exception that caused this exception. |
||
| 31 | * |
||
| 32 | * @return static The created exception. |
||
| 33 | */ |
||
| 34 | 18 | public static function forLanguage($language, Exception $cause = null) |
|
| 41 | } |
||
| 42 |