Does EMAB increase overhead in some cases?

Y

yashgt

Had I not been using EMAB, my function would look like:


func1(){
try{
op1();
}catch{
log.write("op1 failed");
}
try{
op2();
}catch{
log.write("op2 failed");
}

}

With EMAB:
func1(){
try{
op1();
}catch{
bool rethrow = ExceptionPolicy.HandleException(ex, "XYZ");
}
try{
op2();
}catch{
bool rethrow = ExceptionPolicy.HandleException(ex, "XYZ");
}

}

Please pardon the syntax. The point is that I lose the information
regarding the operation that failed, and hence in the handler, I am
not able to log a specific message such as "op1 failed" or "op2
failed".

What is the solution to this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,563
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top