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.

25 lines
519B

  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace TechbloxModdingAPI
  4. {
  5. public class TechbloxModdingAPIException : Exception
  6. {
  7. public TechbloxModdingAPIException()
  8. {
  9. }
  10. public TechbloxModdingAPIException(string message) : base(message)
  11. {
  12. }
  13. public TechbloxModdingAPIException(string message, Exception innerException) : base(message, innerException)
  14. {
  15. }
  16. protected TechbloxModdingAPIException(SerializationInfo info, StreamingContext context) : base(info, context)
  17. {
  18. }
  19. }
  20. }