1 package com.genimen.djeneric.repository.oql.core; 2 3 public class MatchException extends ParseException 4 { 5 6 private static final long serialVersionUID = 3257291344036049202L; 7 8 public MatchException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String [] tokenImageVal) 9 { 10 super(currentTokenVal, expectedTokenSequencesVal, tokenImageVal); 11 } 12 13 public MatchException(String message, int atLine, int atColumn) 14 { 15 super(message, atLine, atColumn); 16 } 17 18 public MatchException(Exception chainThis, int atLine, int atColumn) 19 { 20 super(chainThis, atLine, atColumn); 21 } 22 23 public MatchException() 24 { 25 super(); 26 } 27 28 public MatchException(String message) 29 { 30 super(message); 31 } 32 33 } | Popular Tags |