class TMGMTException

TMGMT Exception class.

Hierarchy

Expanded class hierarchy of TMGMTException

9 files declare their use of TMGMTException
ConfigSource.php in sources/tmgmt_config/src/Plugin/tmgmt/Source/ConfigSource.php
ConfigTranslateForm.php in sources/tmgmt_config/src/Form/ConfigTranslateForm.php
ContentEntitySource.php in sources/content/src/Plugin/tmgmt/Source/ContentEntitySource.php
ContentTranslateForm.php in sources/content/src/Form/ContentTranslateForm.php
Job.php in src/Entity/Job.php

... See full list

File

src/TMGMTException.php, line 8

Namespace

Drupal\tmgmt
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