function TMGMTException::__construct

Parameters

string $message:

array $data: Associative array of dynamic data that will be inserted into $message.

int $code:

File

src/TMGMTException.php, line 16

Class

TMGMTException
TMGMT Exception class.

Namespace

Drupal\tmgmt

Code

function __construct($message = "", $data = array(), $code = 0) {
  parent::__construct(strtr($message, $data), $code);
}