Make exit system file type message generic

This commit is contained in:
Ron Levine 2016-11-23 01:06:13 -05:00
parent 055d653bc2
commit 262c08aee3
1 changed files with 2 additions and 2 deletions

View File

@ -457,9 +457,9 @@ public abstract class CommandLineProgram {
throw new ReviewedGATKException("SamException found with no message!", t); throw new ReviewedGATKException("SamException found with no message!", t);
errorPrintf("------------------------------------------------------------------------------------------%n"); errorPrintf("------------------------------------------------------------------------------------------%n");
errorPrintf("A BAM/CRAM ERROR has occurred (version %s): %n", getVersionNumber()); errorPrintf("AN INPUT FILE ERROR has occurred (version %s): %n", getVersionNumber());
errorPrintf("%n"); errorPrintf("%n");
errorPrintf("This means that there is something wrong with the BAM/CRAM file(s) you provided.%n"); errorPrintf("This means that there is something wrong with the input file(s) you provided.%n");
errorPrintf("The error message below tells you what is the problem.%n"); errorPrintf("The error message below tells you what is the problem.%n");
errorPrintf("%n"); errorPrintf("%n");
printDocumentationReference(); printDocumentationReference();