A stable modding interface between Techblox and mods https://mod.exmods.org/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

34 satır
615B

  1. using System;
  2. namespace TechbloxModdingAPI.Events
  3. {
  4. public class EventException : TechbloxModdingAPIException
  5. {
  6. public EventException()
  7. {
  8. }
  9. public EventException(string message) : base(message)
  10. {
  11. }
  12. public EventException(string message, Exception innerException) : base(message, innerException)
  13. {
  14. }
  15. }
  16. public class EventRuntimeException : EventException
  17. {
  18. public EventRuntimeException()
  19. {
  20. }
  21. public EventRuntimeException(string message) : base(message)
  22. {
  23. }
  24. public EventRuntimeException(string message, Exception innerException) : base(message, innerException)
  25. {
  26. }
  27. }
  28. }