Display error message and execute catch

312 visualizzazioni (ultimi 30 giorni)
Matt C
Matt C il 16 Feb 2017
Modificato: Paul Wintz il 27 Gen 2022
Hello, all. I've got a fairly simple question, and I can't seem to find the answer. If I have a try/catch block, I would like the error to be displayed in the Command Window but I would like to still execute the catch block. I know there are ways to use MException and getReport, but from what I have been reading it seems that you need to know which potential errors that will be thrown so you can use an if statement to print your error. Here is the theoretical snippet of code that I would want to execute:
try
% Here is a giant piece of code that can potentially
% throw hundreds of errors
catch
% If the above section threw an error, I want to display
% whatever that error was and continue the script here
end
How would I go about printing the error statement that kicked the script out of the try block? Thanks,
- Matt

Risposta accettata

Peter O
Peter O il 16 Feb 2017
Does the text need to remain red and halt execution?
A few ways to go about this. First the catch block will hold the error for you:
try
%Error-maker
catch e %e is an MException struct
fprintf(1,'The identifier was:\n%s',e.identifier);
fprintf(1,'There was an error! The message was:\n%s',e.message);
% more error handling...
end
If you want the text red, switch fprintf from 1 (stdout) to 2 (stderr). If you want to throw the error again and stop execution after catching and handling it, use
rethrow(e)
Does that help?
  3 Commenti
Jeremy Ward
Jeremy Ward il 28 Ago 2020
Yeah thanks and kudos Peter. This is just what I needed.
Paul Wintz
Paul Wintz il 27 Gen 2022
Modificato: Paul Wintz il 27 Gen 2022
Using fprintf(2, '<message>'); does not produce red text when used in a live script (on R2021b).

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Testing Frameworks in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by