Coverage Report - uk.ac.ebi.ep.biomart.adapter.BiomartFetchDataException
 
Classes in this File Line Coverage Branch Coverage Complexity
BiomartFetchDataException
0%
0/8
N/A
1
 
 1  
 package uk.ac.ebi.ep.biomart.adapter;
 2  
 
 3  
 
 4  
 /**
 5  
  *
 6  
  * @since   1.0
 7  
  * @version $LastChangedRevision: 507 $ <br/>
 8  
  *          $LastChangedDate: 2012-01-18 09:53:44 +0000 (Wed, 18 Jan 2012) $ <br/>
 9  
  *          $Author: ralcantara $
 10  
  * @author  $Author: ralcantara $
 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  
 }