PageRenderTime 41ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Templates/CSharp/Library/SwinGameException.cs

http://swingamesdk.googlecode.com/
C# | 37 lines | 12 code | 2 blank | 23 comment | 0 complexity | 8ed21d53de32db6408c4ed36d6d49aed MD5 | raw file
Possible License(s): LGPL-2.0, BSD-3-Clause, GPL-2.0
  1. //-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/
  2. //+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+/+
  3. // SwinGameException
  4. //+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+\+
  5. //\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\
  6. //
  7. // Change History:
  8. //
  9. // Version 2.0:
  10. // - 2009-01-20: Andrew: Added version histroy
  11. // to newly created classes
  12. //
  13. //\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Text;
  17. namespace SwinGame
  18. {
  19. /// <summary>
  20. /// A SwinGameException will occur if something has gone wrong in
  21. /// SwinGame. In many cases this will indicate that you are using the API
  22. /// in a way that was not intended. If you believe there is a bug, or need
  23. /// help with an Exception please use the forum at http://www.swingame.com
  24. /// </summary>
  25. public class SwinGameException : Exception
  26. {
  27. /// <summary>
  28. /// SwinGameExceptions
  29. /// </summary>
  30. /// <param name="message">Exception Message</param>
  31. public SwinGameException(string message)
  32. : base(message)
  33. { }
  34. }
  35. }