Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_daldb / src / org / gvsig / fmap / data / feature / db / jdbc / JDBCDriverNotFoundException.java @ 24501

History | View | Annotate | Download (416 Bytes)

1
package org.gvsig.fmap.data.feature.db.jdbc;
2

    
3
import org.gvsig.fmap.dal.exception.InitializeException;
4

    
5

    
6
public class JDBCDriverNotFoundException extends InitializeException {
7
        public JDBCDriverNotFoundException(String l,Throwable exception) {
8
                super(l,exception);
9
                init();
10
        }
11
        /**
12
         *
13
         */
14
        protected void init() {
15
                messageKey = "JDBC_Driver_not_found";
16
                formatString = "JDBC Driver not found: %(name) ";
17
        }
18

    
19
}