11 lines
252 B
C#
11 lines
252 B
C#
using System;
|
|
|
|
namespace RPGCoreCommon.Helpers.Exceptions
|
|
{
|
|
public class NotEnoughElementsForRandomPickException : Exception
|
|
{
|
|
public NotEnoughElementsForRandomPickException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |