[Mono-bugs] [Bug 406200] New: mdb does not stop at exception source block
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Thu Jul 3 11:57:12 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=406200
Summary: mdb does not stop at exception source block
Product: Mono: Debugger
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Major
Priority: P5 - None
Component: backend
AssignedTo: martin at novell.com
ReportedBy: msafar at novell.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
1. Compile
class C
{
static void Test ()
{
throw new System.ApplicationException ();
}
public static void Main ()
{
try {
Test ();
} catch {
throw;
}
}
}
2. run using debugger
MDB breaks at
Thread @1 caught unhandled exception at #0: 0xb781c24e in C.Main()+0x16/home
13 throw;
but it should break at throw new System.ApplicationException ();
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list