Go to the source code of this file.
◆ mCatchAdd2uiRv
| #define mCatchAdd2uiRv |
( |
|
msg | ) |
|
Value:
mCatchNonHDFAdd2uiRv( msg )
◆ mCatchAnyNoMsg
| #define mCatchAnyNoMsg |
( |
|
act | ) |
|
◆ mCatchHDF
Value: catch ( H5::Exception& exc ) \
{
const char*
mUnusedVar exc_msg = exc.getCDetailMsg(); act; }
◆ mCatchHDFAdd2uiRv
◆ mCatchNonHDF
| #define mCatchNonHDF |
( |
|
act | ) |
|
Value: catch ( std::exception& exc ) \
{
const char*
mUnusedVar exc_msg = exc.what(); act; } \
catch ( ... ) \
{
const char*
mUnusedVar exc_msg =
"Unexpected non-std exception"; act; }
◆ mCatchNonHDFAdd2uiRv
◆ mCatchUnexpected
| #define mCatchUnexpected |
( |
|
act | ) |
|
Value: catch ( H5::Exception& exc ) \
catch ( std::exception& exc ) \
catch ( ... ) \
{
const char*
mUnusedVar exc_msg =
"Unexpected non-std exception"; \
pErrMsg(exc_msg); act; }
◆ mRetNeedScopeInUiRv
◆ mRetNoFile
| #define mRetNoFile |
( |
|
action | ) |
{ pErrMsg( sOpenFileFirst() ); action; } |