Try catch on script for any error
1 view (last 30 days)
Show older comments
Hello
I am having a script(myscript), that throws an error whenever there is any part of hardware missing, which is defined in different ways to be used inside of the script.
What I want to do is that whenever any error (maybe even some different error, that I may have not encountered before), whenever "any kind of error" occurs, the script shall retry running for one more time. What would be the best way to do this.
Is try catch the only option, and if yes please edify for how can I use it for 'myscript' to be executed one more time, when the error happens.
Thanks in advance
2 Comments
Adam
on 15 May 2019
Edited: Adam
on 15 May 2019
Turning it into a function with a sealed workspace would make it easier. But a try-catch would work with this in that case. Theoretically it would work with a script too, but having the workspace fully exposed is not ideal even though the second run should presumably just overwrite everything from the first run anyway.
try
myFunction( )
catch
myFunction( )
end
should be enough to do it though. So long as it isn't in a loop this will only re-run it once and then the error will just land on your command window as normal after the 2nd time.
Blanket error catching like this is not generally advisable though as even basic syntax errors will just result in it attempting to run a second time pointlessly before reporting your error, but I understand it can be difficult if you get a bunch of different hardware errors with identifiers you don't necessarily know.
Accepted Answer
Jan
on 15 May 2019
nRetry = 8;
for k = 1:nRetry
try
yourFunction();
break; % Exit from the loop on success
catch ME
fprintf('*** Failed: %s\n Retrying...\n', ME.message);
end
end
More Answers (0)
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!