Acl\AclExtras::err PHP Method

err() public method

Will either use shell->err, or controller->Flash->error()
public err ( string $msg ) : void
$msg string The message to output.
return void
    public function err($msg)
    {
        if (!empty($this->controller->Flash)) {
            $this->controller->Flash->error($msg);
        } else {
            $this->Shell->err($msg);
        }
    }