A stable modding interface between Techblox and mods https://mod.exmods.org/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
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. }