Skip to content

Commit ae17460

Browse files
committed
Improve error message
1 parent a901f3e commit ae17460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/run/NimbleHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ private void updateNimbleConfigFile(File configFile, NimbleGenome genome) throws
339339
}
340340
catch (IOException e)
341341
{
342-
throw new PipelineJobException(e);
342+
throw new PipelineJobException("Unable to parse JSON: " + configFile.getPath(), e);
343343
}
344344

345345
JSONObject config = json.getJSONObject(0);

0 commit comments

Comments
 (0)