Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //clase para el filtro personalizado
- public class YoBFilter : ApplicationException
- {
- public YoBFilter() { } //empty constructor
- public YoBFilter(string message) : base(message)
- {
- exit();
- }
- public YoBFilter(string message, Exception innerException){ }
- public void exit()
- {
- return;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment