ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/branches/aglappe-jung/proteinstructure/GraphIdNotFoundError.java
Revision: 172
Committed: Fri May 25 13:41:19 2007 UTC (17 years, 5 months ago) by duarte
Original Path: trunk/proteinstructure/GraphIdNotFoundError.java
File size: 401 byte(s)
Log Message:
Got rid of some unnecessary warnings
Line User Rev File contents
1 duarte 135 package proteinstructure;
2    
3     public class GraphIdNotFoundError extends Exception {
4    
5 duarte 172 /**
6     *
7     */
8     private static final long serialVersionUID = 1L;
9    
10 duarte 135 public GraphIdNotFoundError() {
11     }
12    
13     public GraphIdNotFoundError(String arg0) {
14     super(arg0);
15     }
16    
17     public GraphIdNotFoundError(Throwable arg0) {
18     super(arg0);
19     }
20    
21     public GraphIdNotFoundError(String arg0, Throwable arg1) {
22     super(arg0, arg1);
23     }
24    
25     }