using System; namespace GamecraftModdingAPI.Players { public class PlayerException : GamecraftModdingAPIException { public PlayerException() { } public PlayerException(string message) : base(message) { } public PlayerException(string message, Exception innerException) : base(message, innerException) { } } public class PlayerNotFoundException : PlayerException { public PlayerNotFoundException() { } public PlayerNotFoundException(string message) : base(message) { } } }