/* */ #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 std::string& msg, error_code::Value code): RecoverableException(file, line, msg, code) {} DlAbortEx::DlAbortEx (const char* file, int line, int errNum, const std::string& msg): RecoverableException(file, line, errNum, msg) {} DlAbortEx::DlAbortEx (const char* file, int line, int errNum, const std::string& msg, error_code::Value errorCode) : RecoverableException(file, line, errNum, msg, errorCode) {} } // namespace aria2