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