A stable modding interface between Techblox and mods https://mod.exmods.org/
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

25 linhas
525B

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