ExpressionCalculateExpression.cs 464 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WpfTest1.Toolkits
  7. {
  8. class ExpressionCalculateExpression : ApplicationException
  9. {
  10. public ExpressionCalculateExpression(string message) : base(message)
  11. {
  12. }
  13. public ExpressionCalculateExpression(string message, Exception innerException) : base(message,innerException)
  14. {
  15. }
  16. }
  17. }