capture more details when something IO-related goes wrong in writing a Tribble index

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4720 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2010-11-23 17:06:28 +00:00
parent 082073ca3c
commit 53672361cc
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ public class RMDTrackBuilder extends PluginManager<FeatureCodec> {
} catch (TribbleException e) {
throw new UserException(e.getMessage());
} catch (IOException e) {
throw new UserException("Unable to create the index file for " + inputFile, e);
throw new UserException.CouldNotCreateOutputFile(inputFile, "unable to write Tribble index", e);
}
return reader;
}