Coverage Report - org.webslinger.json.ParseException
 
Classes in this File Line Coverage Branch Coverage Complexity
ParseException
33%
2/6
N/A
1
 
 1  
 package org.webslinger.json;
 2  
 
 3  
 import org.webslinger.javacc.GenericParseException;
 4  
 
 5  
 public class ParseException extends GenericParseException {
 6  
   public ParseException(Token currentTokenVal,
 7  
                         int[][] expectedTokenSequencesVal,
 8  
                         String[] tokenImageVal
 9  
                        )
 10  
   {
 11  14
     super(currentTokenVal, expectedTokenSequencesVal, tokenImageVal);
 12  14
   }
 13  
 
 14  
   public ParseException() {
 15  0
     super();
 16  0
   }
 17  
 
 18  
   public ParseException(String message) {
 19  0
     super(message);
 20  0
   }
 21  
 }