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

NoViableAltException() protected method

protected NoViableAltException ( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context )
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
        protected NoViableAltException(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            if (info == null)
                throw new ArgumentNullException("info");

            this._grammarDecisionDescription = info.GetString("GrammarDecisionDescription");
            this._decisionNumber = info.GetInt32("DecisionNumber");
            this._stateNumber = info.GetInt32("StateNumber");
        }

Same methods

NoViableAltException::NoViableAltException ( )
NoViableAltException::NoViableAltException ( string grammarDecisionDescription )
NoViableAltException::NoViableAltException ( string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input )
NoViableAltException::NoViableAltException ( string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, int k )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription, System.Exception innerException )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, System.Exception innerException )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, int k )
NoViableAltException::NoViableAltException ( string message, string grammarDecisionDescription, int decisionNumber, int stateNumber, IIntStream input, int k, System.Exception innerException )