Revision: | 215 |
Committed: | Thu Jun 28 15:43:04 2007 UTC (17 years, 8 months ago) by stehr | File size: | 401 byte(s) |
Log Message: | some clean up of exceptions in Pdb and Graph classes: merged PdbAcCodeNotFoundError and MsdAcCodeNotFoundError into PdbCodeNotFoundError, created new PdbChainCodeNotFound, got rid of stderr output, throwing exceptions with informative messages instead |
Line | User | Rev | File contents |
---|---|---|---|
1 | duarte | 124 | package proteinstructure; |
2 | |||
3 | stehr | 215 | public class PdbCodeNotFoundError extends Exception { |
4 | duarte | 124 | |
5 | duarte | 172 | /** |
6 | * | ||
7 | */ | ||
8 | private static final long serialVersionUID = 1L; | ||
9 | |||
10 | stehr | 215 | public PdbCodeNotFoundError() { |
11 | duarte | 124 | } |
12 | |||
13 | stehr | 215 | public PdbCodeNotFoundError(String arg0) { |
14 | duarte | 124 | super(arg0); |
15 | } | ||
16 | |||
17 | stehr | 215 | public PdbCodeNotFoundError(Throwable arg0) { |
18 | duarte | 124 | super(arg0); |
19 | } | ||
20 | |||
21 | stehr | 215 | public PdbCodeNotFoundError(String arg0, Throwable arg1) { |
22 | duarte | 124 | super(arg0, arg1); |
23 | } | ||
24 | |||
25 | } |