Esempio n. 1
0
 internal BatchLoadCompileException(string atomName, string expressionText, ExpressionCompileException innerException) : base(
         $"Batch Load: The expression for atom '${atomName}' could not be compiled", innerException)
 {
     _myAtomName       = atomName;
     _myExpressionText = expressionText;
 }
Esempio n. 2
0
		internal BatchLoadCompileException(string atomName, string expressionText, ExpressionCompileException innerException) : base(string.Format("Batch Load: The expression for atom '${0}' could not be compiled", atomName), innerException)
		{
			MyAtomName = atomName;
			MyExpressionText = expressionText;
		}