Fix Exception typo

This commit is contained in:
Joel Thibault 2012-06-22 16:05:52 -04:00
parent 48987830c4
commit fd9effbfe2
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public class VariantContextBuilder {
* @param parent Cannot be null
*/
public VariantContextBuilder(VariantContext parent) {
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContext parent argument cannot be null in VariantContextBuilder");
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContextBuilder parent argument cannot be null in VariantContextBuilder");
this.alleles = parent.alleles;
this.attributes = parent.getAttributes();
this.attributesCanBeModified = false;