cleanup exception text

This commit is contained in:
Mike Orr 2014-05-21 07:54:22 -04:00
parent d788bb8f71
commit 591f71285c

View File

@ -501,7 +501,7 @@ Status HdfsEnv::CreateDirIfMissing(const std::string& name) {
return CreateDir(name);
default: // anything else should be an error
Log(mylog, "CreateDirIfMissing hdfsExists call failed");
throw HdfsFatalException("3. hdfsExists call failed with error " +
throw HdfsFatalException("hdfsExists call failed with error " +
std::to_string(value) + ".\n");
}
};