public StoneException(string message, ASTree tree) : this($"{message} {tree.Location()}") { }
public ErrorValue(string s, ASTree t) : this(s + " " + t.Location()) { }
public EvalException(string s, ASTree t) : base(s + " " + t.Location()) { }
public SheException(string m, ASTree t) : base(m + " " + t.Location()) { }