16 lines
330 B
C#
16 lines
330 B
C#
using System;
|
|
|
|
namespace FishDice.LuckyDice
|
|
{
|
|
public sealed class InvalidDiceSetException : Exception
|
|
{
|
|
public InvalidDiceSetException(string diceSetId)
|
|
: base("Invalid dice set id: " + diceSetId)
|
|
{
|
|
DiceSetId = diceSetId;
|
|
}
|
|
|
|
public string DiceSetId { get; }
|
|
}
|
|
}
|