Coverage Report - org.webslinger.javacc.support.CloseTokenFoundException
 
Classes in this File Line Coverage Branch Coverage Complexity
CloseTokenFoundException
80%
4/5
N/A
1
 
 1  
 package org.webslinger.javacc.support;
 2  
 
 3  
 public class CloseTokenFoundException extends RuntimeException {
 4  
     protected final int kind;
 5  
 
 6  1
     public CloseTokenFoundException(int kind) {
 7  1
         this.kind = kind;
 8  1
     }
 9  
 
 10  
     public int getKind() {
 11  1
         return kind;
 12  
     }
 13  
 
 14  
     public String getMessage() {
 15  0
         return "CloseToken(" + getKind() + ')';
 16  
     }
 17  
 }