Statistics
| Revision:

svn-gvsig-desktop / branches / v02_desarrollo / libraries / sld / temp / org.gvsig.sldsupport.lib.api / src / main / java / org / gvsig / sldsupport / exception / SLDReadException.java @ 40779

History | View | Annotate | Download (399 Bytes)

1
package org.gvsig.sldsupport.exception;
2

    
3
import org.gvsig.tools.exception.BaseException;
4

    
5
public class SLDReadException extends BaseException {
6
        
7
        /**
8
         * 
9
         */
10
        private static final long serialVersionUID = 2873749769998353025L;
11
        
12
        public SLDReadException(Throwable cause) {
13
                super("Error while reading SLD file", cause, 
14
                        "_Error_while_reading_SLD_file", serialVersionUID);
15
        }
16
}