Modules | |
Component Exceptions | |
Compounds | |
class | CException |
class | CSysException |
Defines | |
#define | hyp_THROW(Exception) |
#define | hyp_THROW2(Exception, Args) |
#define | hyp_THROW_COM2(Result, Args) |
#define | hyp_THROW_COM(Result) |
|
Value: { \ std::string doc; \ hyp_STRING_BEGIN( doc ); \ hyp_STRING_END( doc ); \ throw Exception(doc.c_str()); \ } |
|
Value: { \ std::string doc; \ hyp_STRING_BEGIN( doc ); \ hyp_STRING_DO( doc, Args ); \ hyp_STRING_END( doc ); \ throw Exception(doc.c_str()); \ } |
|
Value: { \ std::string doc; \ hyp_STRING_BEGIN( doc ); \ hyp_STRING_END( doc ); \ throw hyp::ker::CComException(Result,doc.c_str()); \ } |
|
Value: { \ std::string doc; \ hyp_STRING_BEGIN( doc ); \ hyp_STRING_DO( doc , Args ); \ hyp_STRING_END( doc ); \ throw hyp::ker::CComException(Result,doc.c_str()); \ } |
|
|