Try catch together with dbstop
显示 更早的评论
Hi All,
I want to use Try Catch together with dbstop. What I want to do is to email ME.message and then breakpoint on error with "dbstop if all error"
function myFunction()
try
xxxx
xxxxxx
xxxx (error occure here!)
xxxxx
catch ME
EmailMe(ME.message);
dbstop if all error
end
Note that after try (xxxx), there are several functions that I cannot repeat the code after "dbstop if all error".
If I put "dbstop if all error" at the begining, then cannot email "ME.message".
Any solusion to this issue?!
采纳的回答
更多回答(1 个)
Sonima
2019-8-15
0 个投票
1 个评论
Walter Roberson
2019-8-15
keyboard gives you a command prompt in a debugging session. dbstop calls keyboard() when it detects an error.
dbstop only applies to later errors, not to any error condition you are already in the catch block of.
类别
在 帮助中心 和 File Exchange 中查找有关 Debugging and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!