Sign in
apache
/
netbeans
/
3f277361c3bdd1d5120c7a7654e8acb61994283a
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
formatting
/
issue171309.php
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
);
}
}
}
?>