ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/trunk/src/owl/core/sequence/TranslationException.java
Revision: 1119
Committed: Fri Jun 18 11:55:46 2010 UTC (14 years, 3 months ago) by jmduarteg
File size: 483 byte(s)
Log Message:
Now checking also for ambiguous nucleotide codes (n, m) when translating. Changed implementation of translation by using the new Codon class.
Line File contents
1 package owl.core.sequence;
2
3 /**
4 * A exception to be thrown when a sequence or codon can not be translated
5 * @author duarte_j
6 *
7 */
8 public class TranslationException extends Exception {
9 static final long serialVersionUID = 1L;
10
11 public TranslationException() {
12 }
13
14 public TranslationException(String arg0) {
15 super(arg0);
16 }
17
18 public TranslationException(Throwable arg0) {
19 super(arg0);
20 }
21
22 public TranslationException(String arg0, Throwable arg1) {
23 super(arg0, arg1);
24 }
25 }

Properties

Name Value
svn:mime-type text/plain