Statistics
| Revision:

root / trunk / libraries / libGDBMS / src / main / java / com / hardcode / gdbms / driver / exceptions / CloseDriverException.java @ 10627

History | View | Annotate | Download (339 Bytes)

1
package com.hardcode.gdbms.driver.exceptions;
2

    
3

    
4
public class CloseDriverException extends ReadDriverException {
5

    
6
        public CloseDriverException(String l,Throwable exception) {
7
                super(l,exception);
8
                init();
9
        }
10
        /**
11
         *
12
         */
13
        private void init() {
14
                messageKey = "error_close_driver";
15
                formatString = "Can?t close driver: %(driver) ";
16
        }
17
}