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.

66 lines
1.0KB

  1. using System;
  2. using TechbloxModdingAPI;
  3. namespace TechbloxModdingAPI.Blocks
  4. {
  5. public class BlockException : TechbloxModdingAPIException
  6. {
  7. public BlockException()
  8. {
  9. }
  10. public BlockException(System.String message) : base(message)
  11. {
  12. }
  13. public BlockException(System.String message, Exception innerException) : base(message, innerException)
  14. {
  15. }
  16. }
  17. public class BlockTypeException : BlockException
  18. {
  19. public BlockTypeException()
  20. {
  21. }
  22. public BlockTypeException(string message) : base(message)
  23. {
  24. }
  25. }
  26. public class BlockSpecializationException : BlockException
  27. {
  28. public BlockSpecializationException()
  29. {
  30. }
  31. public BlockSpecializationException(string message) : base(message)
  32. {
  33. }
  34. }
  35. public class WiringException : BlockException
  36. {
  37. public WiringException()
  38. {
  39. }
  40. public WiringException(string message) : base(message)
  41. {
  42. }
  43. }
  44. public class WireInvalidException : WiringException
  45. {
  46. public WireInvalidException()
  47. {
  48. }
  49. public WireInvalidException(string message) : base(message)
  50. {
  51. }
  52. }
  53. }