View Javadoc

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          super(string);
12      }
13  
14      public SapJcoMappingException(String string, final Throwable throwable) {
15          super(string, throwable);
16      }
17  }