Statistics
| Revision:

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

History | View | Annotate | Download (374 Bytes)

1
package org.gvsig.sldsupport.exception;
2

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

    
5
public class UnsupportedSLDException extends BaseException {
6
        
7
        /**
8
         * 
9
         */
10
        private static final long serialVersionUID = -4104707192717961573L;
11
        
12
        public UnsupportedSLDException(String msg) {
13
                super(msg, "_Unsupported_SLD_symbol_or_legend", serialVersionUID);
14
        }
15
}