Purpose of error identifiers

조회 수: 22 (최근 30일)
Hau Kit Yong
Hau Kit Yong 2019년 5월 11일
댓글: Xingwang Yong 2022년 5월 22일
I am curious about the practical uses of error identifiers, for example the 'identifier' property in MException objects.
From the documentation (https://uk.mathworks.com/help/matlab/matlab_prog/capture-information-about-errors.html#bq9tdlq-1), I gather that the identifiers are tags for error statements that make them unique. The docs go on to say that the the identifiers can help better identify the error source and also be used to control the error display. The examples that follow however just show how identifiers are created and extracted, so I struggle to see how it can be useful over say, just returning the 'message' property itself.
Why make error statements unique? What is the utility of the identifiers?

채택된 답변

Walter Roberson
Walter Roberson 2019년 5월 11일
It is common for the exact spelling and phrasing and formatting of error messages to evolve. When you go to try/catch an error it is inconvenient to have to update all of the various places that have a particular exact spelling and phrasing to be able to match the changes. Instead it is more convenient to use a token that does not change to represent the error for try/catch purposes, permitting the spelling and phrasing to be changed in just one place.
In particular, using a token to stand in is a practical necessity when you make the program multilingual. When you use a token (error identifier) you can try/catch on just one short representation of the condition and then program in "message catalogs" that hold the translation to a variety of human languages.
  댓글 수: 4
Walter Roberson
Walter Roberson 2022년 5월 22일
I do not know if there is a better way to create your own catalog, but the implication is that you could create a matlabroot resources/MyToolbox folder to put the catalogs into.
Xingwang Yong
Xingwang Yong 2022년 5월 22일
@Walter Roberson Thanks, Walter. I've read that answer before asking here. I'll try it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by