| 1 | |
package uk.ac.ebi.ep.biomart.adapter; |
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
public class BiomartFetchDataException extends Exception { |
| 13 | |
|
| 14 | |
private static final long serialVersionUID = 1242325633809788440L; |
| 15 | |
|
| 16 | |
public BiomartFetchDataException(Throwable cause) { |
| 17 | 0 | super(cause); |
| 18 | 0 | } |
| 19 | |
|
| 20 | |
public BiomartFetchDataException(String message, Throwable cause) { |
| 21 | 0 | super(message, cause); |
| 22 | 0 | } |
| 23 | |
|
| 24 | |
public BiomartFetchDataException(String message) { |
| 25 | 0 | super(message); |
| 26 | 0 | } |
| 27 | |
|
| 28 | 0 | public BiomartFetchDataException() { |
| 29 | 0 | } |
| 30 | |
|
| 31 | |
} |