You are here

protected function WebformEvalMath::trigger in Webform Calculator 7.2

3 calls to WebformEvalMath::trigger()
WebformEvalMath::evaluate in ./matheval.class.php
WebformEvalMath::nfx in ./matheval.class.php
WebformEvalMath::pfx in ./matheval.class.php

File

./matheval.class.php, line 358

Class

WebformEvalMath

Code

protected function trigger($msg) {
  $this->last_error = $msg;
  if (!$this->suppress_errors) {
    throw new Exception($msg);
  }
  return false;
}