#include <Alembic/Abc/Foundation.h>Go to the source code of this file.
| #define ALEMBIC_ABC_SAFE_CALL_BEGIN | ( | CONTEXT | ) |
Value:
do \ { \ ::Alembic::Abc::ErrorHandler::Context \ __err( this->getErrorHandler(), ( CONTEXT ) ); \ try \ {
Definition at line 171 of file ErrorHandler.h.
| #define ALEMBIC_ABC_SAFE_CALL_END | ( | ) |
Value:
} \
catch ( std::exception &exc ) \
{ \
__err( exc ); \
} \
catch ( ... ) \
{ \
__err( ::Alembic::Abc:: \
ErrorHandler::kUnknownException ); \
} \
} \
while( 0 )
Definition at line 197 of file ErrorHandler.h.
| #define ALEMBIC_ABC_SAFE_CALL_END_RESET | ( | ) |
Value:
} \
catch ( std::exception &exc ) \
{ \
this->reset(); \
__err( exc ); \
} \
catch ( ... ) \
{ \
this->reset(); \
__err( ::Alembic::Abc:: \
ErrorHandler::kUnknownException ); \
} \
} \
while( 0 )
Definition at line 180 of file ErrorHandler.h.
1.5.9