Statistics
| Revision:

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

History | View | Annotate | Download (421 Bytes)

1
package org.gvsig.sldsupport.exception;
2

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

    
5
public class SLDWriteException extends BaseException {
6
        
7
        /**
8
         * 
9
         */
10
        private static final long serialVersionUID = 4612344620813700878L;
11

    
12
        /**
13
         * 
14
         */
15
        
16
        public SLDWriteException(Throwable cause) {
17
                super("Error while writing SLD file", cause, 
18
                        "_Error_while_writing_SLD_file", serialVersionUID);
19
        }
20
}