Statistics
| Revision:

svn-gvsig-desktop / tags / J2ME_compat_v1_2_Build_1209 / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / expansionfile / ExpansionFileReadException.java @ 19509

History | View | Annotate | Download (698 Bytes)

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

    
3
import com.iver.cit.gvsig.fmap.edition.ExpansionFile;
4

    
5
/**
6
 * Exception thrown when an error ocurred in an access to the ExpansionFile.
7
 * Typically an ExpansionFileReadExpection is thrown when the current layer
8
 * is being edited.
9
 *
10
 * @see ExpansionFile
11
 * @author Vicente Caballero Navarro
12
 */
13
public class ExpansionFileReadException extends ExpansionFileException {
14

    
15
        public ExpansionFileReadException(String l,Throwable exception) {
16
                super(l,exception);
17
                init();
18
        }
19
        /**
20
         *
21
         */
22
        private void init() {
23
                messageKey = "error_read_expansion_file";
24
                formatString = "Can?t read expansion file: %(file) ";
25
        }
26

    
27
}