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