/* */ #ifndef _D_DL_RETRY_EX_H_ #define _D_DL_RETRY_EX_H_ #include "Exception.h" class DlRetryEx:public Exception { public: DlRetryEx():Exception() {} DlRetryEx(const char* msg, ...):Exception() { va_list ap; va_start(ap, msg); setMsg(msg, ap); va_end(ap); } }; #endif // _D_DL_RETRY_EX_H_