Mercurial > repos > pfrommolt > ngsrich
annotate NGSrich_0.5.5/src/exceptions/ChromosomeMismatchException.java @ 0:89ad0a9cca52 default tip
Uploaded
author | pfrommolt |
---|---|
date | Mon, 21 Nov 2011 08:12:19 -0500 |
parents | |
children |
rev | line source |
---|---|
0 | 1 package exceptions; |
2 | |
3 public class ChromosomeMismatchException extends ChromosomeException { | |
4 | |
5 private static final long serialVersionUID = -2902763382812748929L; | |
6 | |
7 public ChromosomeMismatchException(){ | |
8 super("The chromosome names in target and alignment are different. " + | |
9 "The naming must be consistent."); | |
10 } | |
11 | |
12 } |