Esempio n. 1
0
 public StoneException(string message, ASTree tree) : this($"{message} {tree.Location()}")
 {
 }
Esempio n. 2
0
 public ErrorValue(string s, ASTree t) : this(s + " " + t.Location())
 {
 }
Esempio n. 3
0
 public EvalException(string s, ASTree t) : base(s + " " + t.Location())
 {
 }
Esempio n. 4
0
 public SheException(string m, ASTree t) : base(m + " " + t.Location())
 {
 }