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

Lines Matching full:unwantedtokenexception

42     public class UnwantedTokenException : MismatchedTokenException
44 public UnwantedTokenException()
48 public UnwantedTokenException(string message)
53 public UnwantedTokenException(string message, Exception innerException)
58 public UnwantedTokenException(int expecting, IIntStream input)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
78 protected UnwantedTokenException(SerializationInfo info, StreamingContext context)
104 return "UnwantedTokenException(found=" + null + exp + ")";
106 return "UnwantedTokenException(found=" + Token.Text + exp + ")";