|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ParserException.java | - | 0% | 0% | 0% |
|
1 |
package org.codehaus.groovy.syntax.parser;
|
|
2 |
|
|
3 |
import org.codehaus.groovy.syntax.Token;
|
|
4 |
import org.codehaus.groovy.syntax.TokenException;
|
|
5 |
|
|
6 |
public class ParserException extends TokenException { |
|
7 | 0 |
public ParserException(String message, Token token) {
|
8 | 0 |
super(message, token);
|
9 |
} |
|
10 |
|
|
11 |
} |
|
12 |
|
|