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