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 172 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 198 of file ErrorHandler.h.
#define ALEMBIC_ABC_SAFE_CALL_END_RESET |
( |
| ) |
|
Value:} \
catch ( std::exception &exc ) \
__err( exc ); \
} \
catch ( ... ) \
__err( ::Alembic::Abc:: \
ErrorHandler::kUnknownException ); \
} \
} \
while( 0 )
**But if you need a or simply need to know when the task has note that the like this
Definition at line 181 of file ErrorHandler.h.