Coverage Report - net.sf.sapjcosupport.SapJcoMappingException
 
Classes in this File Line Coverage Branch Coverage Complexity
SapJcoMappingException
0% 
N/A 
1
 
 1  
 package net.sf.sapjcosupport;
 2  
 
 3  
 import org.springframework.dao.InvalidDataAccessApiUsageException;
 4  
 
 5  
 /**
 6  
  * @author Niki Driessen
 7  
  * @since Jan 23, 2006 - 3:29:40 PM
 8  
  */
 9  
 public class SapJcoMappingException extends InvalidDataAccessApiUsageException {
 10  
     public SapJcoMappingException(String string) {
 11  0
         super(string);
 12  0
     }
 13  
 
 14  
     public SapJcoMappingException(String string, final Throwable throwable) {
 15  0
         super(string, throwable);
 16  0
     }
 17  
 }