/* */ #include "DlAbortEx.h" namespace aria2 { SharedHandle DlAbortEx::copy() const { SharedHandle e(new DlAbortEx(*this)); return e; } DlAbortEx::DlAbortEx(const char* file, int line, const std::string& msg): RecoverableException(file, line, msg) {} DlAbortEx::DlAbortEx(const char* file, int line, const std::string& msg, const Exception& cause): RecoverableException(file, line, msg, cause) {} DlAbortEx::DlAbortEx(const char* file, int line, const RecoverableException& e): RecoverableException(file, line, e) {} DlAbortEx::DlAbortEx (const char* file, int line, int errnoArg, const std::string& msg): RecoverableException(file, line, errnoArg, msg) {} DlAbortEx::DlAbortEx(const char* file, int line, const std::string& msg, downloadresultcode::RESULT code): RecoverableException(file, line, msg, code) {} } // namespace aria2