geekbot/Geekbot.net/Lib/DiceParser/DiceException.cs

13 lines
245 B
C#
Raw Normal View History

2020-06-21 03:33:05 +02:00
using System;
namespace Geekbot.net.Lib.DiceParser
{
public class DiceException : Exception
{
public DiceException(string message) : base(message)
{
}
public string DiceName { get; set; }
}
}