ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/owl/trunk/proteinstructure/PdbfileFormatError.java
Revision: 208
Committed: Wed Jun 27 14:42:12 2007 UTC (17 years, 8 months ago) by duarte
File size: 465 byte(s)
Log Message:
FIXED BUGS:
- directed was not set when reading from cm file
- pdbChainCode not set when reading from db given pdbCode
- filling pdbresser2resser and resser2pdbresser hashmaps also in reading from pdb file
- using "A" as chainCode when reading from pdb file
- some error handling for file formats: new exception classes GraphFileFormatError and PdbfileFormatError
Line File contents
1 package proteinstructure;
2
3 public class PdbfileFormatError extends Exception {
4
5 /**
6 * Exception to be used when a pdb file is found not to be in the right format
7 */
8 private static final long serialVersionUID = 1L;
9
10 public PdbfileFormatError() {
11 }
12
13 public PdbfileFormatError(String arg0) {
14 super(arg0);
15 }
16
17 public PdbfileFormatError(Throwable arg0) {
18 super(arg0);
19 }
20
21 public PdbfileFormatError(String arg0, Throwable arg1) {
22 super(arg0, arg1);
23 }
24 }