// it could be that this will store in a DB, there are problems with '\'
String sErrorMessage = "Graphical compare failed with file ";
String sErrorFile = _sAbsoluteInputFile.replace('\\', '/');
sErrorMessage = sErrorMessage + "'" + sErrorFile + "'";
DB.writeErrorFile(sErrorFile);
throw new ConvWatchException(sErrorMessage);
}
return bResultIsOk;
}