Coverage Report - net.sf.sapjcosupport.jdbc.JdbcFeatureNotSupportedException
 
Classes in this File Line Coverage Branch Coverage Complexity
JdbcFeatureNotSupportedException
0% 
N/A 
1
 
 1  
 package net.sf.sapjcosupport.jdbc;
 2  
 
 3  
 import org.springframework.core.NestedRuntimeException;
 4  
 
 5  
 /**
 6  
  * Created by IntelliJ IDEA.
 7  
  * User: NDE1677
 8  
  * Date: Jul 6, 2006
 9  
  * Time: 2:25:00 PM
 10  
  * To change this template use File | Settings | File Templates.
 11  
  */
 12  
 public class JdbcFeatureNotSupportedException extends NestedRuntimeException {
 13  
     public JdbcFeatureNotSupportedException() {
 14  0
         super("The requested feature is not supported by this implementation");
 15  0
     }
 16  
 }