Antlr.Runtime.MismatchedTokenException.MismatchedTokenException C# (CSharp) Method

MismatchedTokenException() public method

public MismatchedTokenException ( string message, int expecting, IIntStream input, IList tokenNames ) : System.Collections.Generic
message string
expecting int
input IIntStream
tokenNames IList
return System.Collections.Generic
        public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
            : base(message, input)
        {
            this._expecting = expecting;

            if (tokenNames != null)
                this._tokenNames = new ReadOnlyCollection<string>(new List<string>(tokenNames));
        }

Same methods

MismatchedTokenException::MismatchedTokenException ( ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( int expecting, IIntStream input ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( int expecting, IIntStream input, IList tokenNames ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( string message ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( string message, System.Exception innerException ) : System.Collections.Generic
MismatchedTokenException::MismatchedTokenException ( string message, int expecting, IIntStream input, IList tokenNames, System.Exception innerException ) : System.Collections.Generic