Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / ProjectionMismatchException.java @ 213

History | View | Annotate | Download (389 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap;
4

    
5
public class ProjectionMismatchException extends Exception{
6
        
7
        private FLayer layer;
8
        private FMap fmap;
9
        
10
        public ProjectionMismatchException(FLayer layer, FMap fmap){
11
                this.layer = layer;
12
                this.fmap = fmap;
13
        }
14
        
15
    public FLayer getLayer() {
16
            return layer;
17
    }
18

    
19
    public FMap getMap() {
20
            return fmap;
21
    }
22
}