TechbloxModdingAPI/GamecraftModdingAPI/Players/PlayerExceptions.cs
2020-05-15 17:42:04 -04:00

30 lines
515 B
C#

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)
{
}
}
}