Base: [skip ci] pass the full file path to the FileException

This commit is contained in:
wmayer
2021-09-29 14:02:46 +02:00
parent ca05fc678b
commit dfe84ef123

View File

@@ -254,7 +254,7 @@ FileException::FileException(const char * sMessage, const char * sFileName)
FileException::FileException(const char * sMessage, const FileInfo& File)
: Exception( sMessage ),file(File)
{
setFileName(File.fileName().c_str());
setFileName(File.filePath().c_str());
}
FileException::FileException()