ExpressionUnformattedException.cs 471 B

12345678910111213141516171819
  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. public class ExpressionUnformattedException:ApplicationException
  9. {
  10. public ExpressionUnformattedException(string message) : base(message)
  11. {
  12. }
  13. public ExpressionUnformattedException(string message, Exception innerException) : base(message,innerException)
  14. {
  15. }
  16. }
  17. }