/* */ #include "DlRetryEx.h" namespace aria2 { std::shared_ptr DlRetryEx::copy() const { return std::make_shared(*this); } 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