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

Line File contents
1 package proteinstructure;
2
3 public class CiffileFormatError extends FileFormatError {
4
5 /**
6 * Exception to be used when parsing a cif file and some formatting error is found
7 */
8 private static final long serialVersionUID = 1L;
9
10 public CiffileFormatError() {
11 }
12
13 public CiffileFormatError(String arg0) {
14 super(arg0);
15 }
16
17 public CiffileFormatError(Throwable arg0) {
18 super(arg0);
19 }
20
21 public CiffileFormatError(String arg0, Throwable arg1) {
22 super(arg0, arg1);
23 }
24
25 public CiffileFormatError(String arg0, String file, long line ) {
26 super(arg0,file,line);
27 }
28
29 public CiffileFormatError(String arg0, Throwable arg1, String file, long line ) {
30 super(arg0,arg1,file,line);
31 }
32
33 public CiffileFormatError(String arg0, String file, long startByte, long stopByte ) {
34 super(arg0,file,startByte,stopByte);
35 }
36
37 public CiffileFormatError(String arg0, Throwable arg1, String file, long startByte, long stopByte ) {
38 super(arg0,arg1,file,startByte,stopByte);
39 }
40 }