Report filename in exception.

This commit is contained in:
Victor Zverovich 2014-08-28 13:42:07 -07:00
parent e44619707e
commit eab0b577f8

View File

@ -73,7 +73,7 @@ fmt::BufferedFile::~BufferedFile() FMT_NOEXCEPT(true) {
fmt::BufferedFile::BufferedFile(fmt::StringRef filename, fmt::StringRef mode) {
FMT_RETRY_VAL(file_, FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), 0);
if (!file_)
throw SystemError(errno, "cannot open file");
throw SystemError(errno, "cannot open file {}", path);
}
void fmt::BufferedFile::close() {