Advertisement
parabola949

UserDidNotFollowDirectionsException

Apr 29th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. class UserDidNotFollowDirectionsException : Exception
  2.     {
  3.         public UserDidNotFollowDirectionsException() { }
  4.  
  5.         public UserDidNotFollowDirectionsException(string message) : base(message){ }
  6.  
  7.         public UserDidNotFollowDirectionsException(string message, Exception inner) : base(message, inner) { }
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement