PathUrlExeption.cs 458 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Test6_mod.ViewModels.Exceptions
  7. {
  8. public class PathUrlExeption : Exception
  9. {
  10. public PathUrlExeption(string msg)
  11. : base(msg) { }
  12. public PathUrlExeption()
  13. : base("Ссылка некорректная! Проверьте правильный ввод ссылки...") { }
  14. }
  15. }