Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dataDB / src / org / gvsig / data / datastores / vectorial / db / jdbc / JDBCDriverNotFoundException.java @ 20973

History | View | Annotate | Download (410 Bytes)

1
package org.gvsig.data.datastores.vectorial.db.jdbc;
2

    
3
import org.gvsig.data.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
}