No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EvaluationException.cs 334B

1234567891011
  1. using System;
  2. namespace Unity.VisualScripting.Dependencies.NCalc
  3. {
  4. public sealed class EvaluationException : ApplicationException
  5. {
  6. public EvaluationException(string message) : base(message) { }
  7. public EvaluationException(string message, Exception innerException) : base(message, innerException) { }
  8. }
  9. }