Defines | |
#define | AMQ_CATCH_RETHROW(type) |
#define | AMQ_CATCH_EXCEPTION_CONVERT(sourceType, targetType) |
#define | AMQ_CATCHALL_THROW(type) |
#define | AMQ_CATCHALL_NOTHROW() |
#define | AMQ_CATCH_NOTHROW(type) |
|
Value: catch( sourceType& ex ){ \ targetType target( ex ); \ target.setMark( __FILE__, __LINE__ ); \ throw target; \ }
|
|
Value: catch( type& ex ){ \
ex.setMark( __FILE__, __LINE__ ); \
}
|
|
Value: catch( type& ex ){ \ ex.setMark( __FILE__, __LINE__ ); \ throw ex; \ }
|
|
Value: catch( ... ){ \ exceptions::ActiveMQException ex( __FILE__, __LINE__, \ "caught unknown exception, not rethrowing" ); \ } |
|
Value: catch( ... ){ \ type ex( __FILE__, __LINE__, \ "caught unknown exception" ); \ throw ex; \ }
|