Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.lib / org.gvsig.scripting.lib.api / src / main / java / org / gvsig / scripting / CompileErrorException.java @ 650

History | View | Annotate | Download (609 Bytes)

1
package org.gvsig.scripting;
2

    
3
import java.io.File;
4

    
5
public class CompileErrorException extends ScriptingErrorException {
6

    
7
        /**
8
         * 
9
         */
10
        private static final long serialVersionUID = -7829204331513125285L;
11

    
12
        public CompileErrorException(String msg, File name, int line, int column) {
13
                super(msg, name, line, column);
14
        }
15
        
16
        public CompileErrorException(String msg, File name, int line, int column, Throwable cause) {
17
                this(msg, name, line, column);
18
                this.initCause(cause);
19
        }
20
        
21
        public CompileErrorException(String msg, File name, Throwable cause) {
22
                this(msg, name, -1, -1);
23
                this.initCause(cause);
24
        }
25
}