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.

34 lines
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. }