29 lines
515 B
C#
29 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)
|
|
{
|
|
}
|
|
}
|
|
}
|