KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > genimen > djeneric > repository > oql > core > MatchException


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 JavaDoc[] tokenImageVal)
9   {
10     super(currentTokenVal, expectedTokenSequencesVal, tokenImageVal);
11   }
12
13   public MatchException(String JavaDoc message, int atLine, int atColumn)
14   {
15     super(message, atLine, atColumn);
16   }
17
18   public MatchException(Exception JavaDoc 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 JavaDoc message)
29   {
30     super(message);
31   }
32
33 }
Popular Tags