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.

30 lines
513B

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