/**
  * Constructs a new ezcTranslationWriterNotInitializedException.
  *
  * @return void
  */
 function __construct()
 {
     parent::__construct("The writer is not initialized with the initWriter() method.");
 }
 /**
  * Constructs a new ezcTranslationContextNotAvailableException.
  *
  * @param string $contextName
  * @return void
  */
 function __construct($contextName)
 {
     parent::__construct("The context '{$contextName}' does not exist.");
 }
 /**
  * Constructs a new ezcTranslationMissingTranslationFileException.
  *
  * @param string $fileName
  * @return void
  */
 function __construct($fileName)
 {
     parent::__construct("The translation file '{$fileName}' does not exist.");
 }
 /**
  * Constructs a new ezcTranslationKeyNotAvailableException.
  *
  * @param string $keyName
  * @return void
  */
 function __construct($keyName)
 {
     parent::__construct("The key '{$keyName}' does not exist in the translation map.");
 }
示例#5
0
 /**
  * Constructs a new ezcTranslationParameterMissingException.
  *
  * @param string $parameterName
  * @return void
  */
 function __construct($parameterName)
 {
     parent::__construct("The parameter '%{$parameterName}' does not exist.");
 }
示例#6
0
 /**
  * Constructs a new ezcTranslationNotConfiguredException.
  *
  * @param string $location
  * @return void
  */
 function __construct($location)
 {
     parent::__construct("Location '{$location}' is invalid.");
 }