Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / expansionfile / OpenExpansionFileException.java @ 10627

History | View | Annotate | Download (418 Bytes)

1
package com.iver.cit.gvsig.exceptions.expansionfile;
2

    
3
/**
4
 * @author Vicente Caballero Navarro
5
 */
6
public class OpenExpansionFileException extends ExpansionFileException {
7

    
8
        public OpenExpansionFileException(String l,Throwable exception) {
9
                super(l,exception);
10
                init();
11
        }
12
        /**
13
         *
14
         */
15
        private void init() {
16
                messageKey = "error_open_expansion_file";
17
                formatString = "Can?t open expansion file: %(file) ";
18
        }
19

    
20
}