ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/trunk/proteinstructure/PdbaseInconsistencyError.java
Revision: 492
Committed: Wed Jan 2 13:18:57 2008 UTC (16 years, 10 months ago) by duarte
File size: 421 byte(s)
Log Message:
Copied the aglappe-jung branch into trunk.

Line File contents
1 package proteinstructure;
2
3 public class PdbaseInconsistencyError extends Exception {
4
5 /**
6 *
7 */
8 private static final long serialVersionUID = 1L;
9
10 public PdbaseInconsistencyError() {
11 }
12
13 public PdbaseInconsistencyError(String arg0) {
14 super(arg0);
15 }
16
17 public PdbaseInconsistencyError(Throwable arg0) {
18 super(arg0);
19 }
20
21 public PdbaseInconsistencyError(String arg0, Throwable arg1) {
22 super(arg0, arg1);
23 }
24
25 }