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