mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 18:25:30 +00:00
31 lines
363 B
ActionScript
31 lines
363 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestInnerTry
|
|
{
|
|
public function run():*
|
|
{
|
|
try
|
|
{
|
|
try
|
|
{
|
|
trace("try body 1");
|
|
}
|
|
catch (e:DefinitionError)
|
|
{
|
|
trace("catched DefinitionError");
|
|
}
|
|
trace("after try 1");
|
|
}
|
|
catch (e:Error)
|
|
{
|
|
trace("catched Error");
|
|
}
|
|
finally
|
|
{
|
|
trace("finally block");
|
|
}
|
|
}
|
|
}
|
|
}
|