A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
684B

  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace TechbloxModdingAPI.App
  4. {
  5. public class AppException : TechbloxModdingAPIException
  6. {
  7. public AppException()
  8. {
  9. }
  10. public AppException(string message) : base(message)
  11. {
  12. }
  13. public AppException(string message, Exception innerException) : base(message, innerException)
  14. {
  15. }
  16. }
  17. public class AppStateException : AppException
  18. {
  19. public AppStateException()
  20. {
  21. }
  22. public AppStateException(string message) : base(message)
  23. {
  24. }
  25. }
  26. public class GameNotFoundException : AppException
  27. {
  28. public GameNotFoundException()
  29. {
  30. }
  31. public GameNotFoundException(string message) : base(message)
  32. {
  33. }
  34. }
  35. }