i found follwoing bug:
Code: Select all
try
{
throw Exception();
}
catch(NullReferenceException exc)
{
// Some Code
}
catch(Exception exc)
{
// Some Code
}
With this code Ranorex shows me the right exception:
Code: Select all
try
{
throw Exception();
}
catch(NullReferenceException exc1)
{
// Some Code
}
catch(Exception exc2)
{
// Some Code
}
Version 4.1.4.16685
.NET Runtime Version 4.0.30319.18444
Sincere regards,
GeCi