function TMGMTGoogleException::__construct in TMGMT Translator Google 7
Parameters
string $message:
array $data: Associative array of dynamic data that will be inserted into $message.
int $code:
File
- ./
tmgmt_google.module, line 36 - Main bootstrap file of the tmgmt_google module.
Class
- TMGMTGoogleException
- Local Exception class
Code
function __construct($message = "", $data = array(), $code = 0) {
parent::__construct(strtr($message, $data), $code);
}