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