Mono.Debugger.ExpressionParsingException.ExpressionParsingException C# (CSharp) Method

ExpressionParsingException() public method

public ExpressionParsingException ( string expression, int pos, string message ) : System
expression string
pos int
message string
return System
        public ExpressionParsingException(string expression, int pos, string message)
            : base(message)
        {
            this.Expression = expression;
            this.Position = pos;
        }
ExpressionParsingException