|
@@ -49,12 +49,18 @@ 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, 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,
|
|
|
+ error_code::Value errorCode)
|
|
|
+ : RecoverableException(file, line, errNum, msg, errorCode)
|
|
|
+{}
|
|
|
|
|
|
} // namespace aria2
|