Metziop

Untitled

Jun 10th, 2022
1,322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1.  //clase para el filtro personalizado
  2.     public class YoBFilter : ApplicationException
  3.     {
  4.         public YoBFilter() { } //empty constructor
  5.  
  6.         public YoBFilter(string message) : base(message)
  7.         {
  8.             exit();
  9.         }
  10.         public YoBFilter(string message, Exception innerException){ }
  11.  
  12.         public void exit()
  13.         {
  14.             return;
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment