You are here

class TMGMTException in Translation Management Tool 7

TMGMT Exception class

Hierarchy

Expanded class hierarchy of TMGMTException

File

includes/tmgmt.exception.inc, line 6

View source
class TMGMTException 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);
  }

}

Members