Advertisement
wis3_guy

Policy Exception Class

Mar 7th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace atm_program
  7. {
  8. public class PolicyException : Exception
  9. {
  10. public PolicyException() : base()
  11. { }
  12. public PolicyException(string message) : base(message)
  13. { }
  14. public PolicyException(string message, System.Exception inner) : base(message, inner)
  15. { }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement