We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adfc246 commit fcbc8dbCopy full SHA for fcbc8db
1 file changed
RawFileParser.cs
@@ -121,13 +121,13 @@ private static void ProcessFile(ParseInput parseInput)
121
{
122
if (!rawFile.IsOpen)
123
124
- throw new RawFileParserException("Unable to access the RAW file using the native Thermo library.");
+ throw new RawFileParserException("Unable to access the RAW file using the native Thermo API");
125
}
126
127
// Check for any errors in the RAW file
128
if (rawFile.IsError)
129
130
- throw new RawFileParserException($"RAW file cannot be processed because of an error - {rawFile.FileError}");
+ throw new RawFileParserException($"Native Thermo API reported the following error - RAW file is likely corrupted\n{rawFile.FileError.ErrorMessage}");
131
132
133
// Check if the RAW file is being acquired
0 commit comments