blob: 144407b4a129344d736183fb7f7324e3204a0b36 [file] [log] [blame]
<?php
class Test {
public function test(){
try
{
if(true)
{
throw new Exception('error');
}
foreach($aa as $a)
{
}
}
catch(Exception $e)
{
$this->_flashMessenger->addMessage('Chyba: '.$e);
}
}
}
?>