Added additional error_code::Values(9 through 14).

This commit is contained in:
Tatsuhiro Tsujikawa 2010-11-28 17:29:32 +09:00
parent d316a00ade
commit ecbc05012c
6 changed files with 42 additions and 24 deletions

View file

@ -213,9 +213,10 @@ bool HttpResponseCommand::executeInternal()
getRequestGroup()->preDownloadProcessing();
if(getDownloadEngine()->getRequestGroupMan()->
isSameFileBeingDownloaded(getRequestGroup())) {
throw DOWNLOAD_FAILURE_EXCEPTION
throw DOWNLOAD_FAILURE_EXCEPTION2
(fmt(EX_DUPLICATE_FILE_DOWNLOAD,
getRequestGroup()->getFirstFilePath().c_str()));
getRequestGroup()->getFirstFilePath().c_str()),
error_code::DUPLICATE_DOWNLOAD);
}
// update last modified time
updateLastModifiedTime(httpResponse->getLastModifiedTime());