class TMGMTGoogleException in TMGMT Translator Google 7
Local Exception class
Hierarchy
- class \TMGMTGoogleException extends \Exception
Expanded class hierarchy of TMGMTGoogleException
File
- ./
tmgmt_google.module, line 28 - Main bootstrap file of the tmgmt_google module.
View source
class TMGMTGoogleException extends Exception {
/**
* @param string $message
* @param array $data
* Associative array of dynamic data that will be inserted into $message.
* @param int $code
*/
function __construct($message = "", $data = array(), $code = 0) {
parent::__construct(strtr($message, $data), $code);
}
}