Skip to content
Snippets Groups Projects
Commit b7e1e020 authored by Steven Murray's avatar Steven Murray
Browse files

Added diskInstanceName and archiveFileId to OracleCatalogue::deleteArchiveFile() exception message

parent 3fdb4ce7
Branches
Tags
No related merge requests found
......@@ -965,7 +965,10 @@ void OracleCatalogue::deleteArchiveFile(const std::string &diskInstanceName, con
} catch(exception::UserError &) {
throw;
} catch(exception::Exception &ex) {
ex.getMessage().str(std::string(__FUNCTION__) + ": " + ex.getMessage().str());
std::ostringstream msg;
msg << __FUNCTION__ << ": diskInstanceName=" << diskInstanceName <<",archiveFileId=" <<
archiveFileId << ": " << ex.getMessage().str();
ex.getMessage().str(msg.str());
throw;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment