ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/branches/aglappe-jung/proteinstructure/AlignmentConstructionError.java
Revision: 419
Committed: Thu Nov 22 14:09:18 2007 UTC (16 years, 11 months ago) by duarte
File size: 719 byte(s)
Log Message:
Re-branching for JUNG2 development
Line User Rev File contents
1 lpetzo 385 package proteinstructure;
2    
3     /**
4     * Exception to be thrown whenever the construction of an alignment object
5     * failes due to some malformed data that is not directly connected to some
6     * file format error. The latter shall be notified by specialized file format
7     * error exceptions.
8     *
9     * @author Lars Petzold
10     */
11     public class AlignmentConstructionError extends Exception {
12     static final long serialVersionUID = 1L;
13    
14     public AlignmentConstructionError() {
15     }
16    
17     public AlignmentConstructionError(String arg0) {
18     super(arg0);
19     }
20    
21     public AlignmentConstructionError(Throwable arg0) {
22     super(arg0);
23     }
24    
25     public AlignmentConstructionError(String arg0, Throwable arg1) {
26     super(arg0, arg1);
27     }
28     }