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

MismatchedSetException() protected method

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

            this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
        }

Same methods

MismatchedSetException::MismatchedSetException ( )
MismatchedSetException::MismatchedSetException ( BitSet expecting, IIntStream input )
MismatchedSetException::MismatchedSetException ( string message )
MismatchedSetException::MismatchedSetException ( string message, BitSet expecting, IIntStream input )
MismatchedSetException::MismatchedSetException ( string message, BitSet expecting, IIntStream input, System.Exception innerException )
MismatchedSetException::MismatchedSetException ( string message, System.Exception innerException )