Bah... there is no reproducible sample on that page so I doubt he'll have
any replies... also there is no point starting a new thread when you've got
an existing one open...
In a form this works:
private void button1_Click(object sender, System.EventArgs e) {
try{
Either.ThrowSth1();
}catch (Exception ex){
this.Text = ex.Message;
}
}
public class Either {
public static void ThrowSth1(){
try{
Other.ThrowSth2();
}catch (Exception ex){
throw new Exception(ex.Message);
}
}
}
public class Other{
public static void ThrowSth2(){
throw new Exception("Too bored to post a sample");
}
}
Cheers
Daniel