add method setErrorMsg()

This commit is contained in:
Uwe Steinmann 2017-06-09 12:27:26 +02:00
parent 58589bde70
commit 883131d61e

View File

@ -122,6 +122,15 @@ class SeedDMS_Controller_Common {
return $this->errormsg;
} /* }}} */
/**
* Set error message
*
* @param string $msg error message
*/
public function setErrorMsg($msg) { /* {{{ */
$this->errormsg = $msg;
} /* }}} */
/**
* Call a controller hook
*