Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching defs:MismatchedTokenException

44     public class MismatchedTokenException : RecognitionException
49 public MismatchedTokenException()
53 public MismatchedTokenException(string message)
58 public MismatchedTokenException(string message, Exception innerException)
63 public MismatchedTokenException(int expecting, IIntStream input)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
95 protected MismatchedTokenException(SerializationInfo info, StreamingContext context)
136 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")";