Files
TheVVaS-Assets/RPGCoreCommon/Helpers/Runtime/Exceptions/NotEnoughElementsForRandomPickException.cs
T
2026-04-25 23:37:10 +02:00

11 lines
252 B
C#

using System;
namespace RPGCoreCommon.Helpers.Exceptions
{
public class NotEnoughElementsForRandomPickException : Exception
{
public NotEnoughElementsForRandomPickException(string message) : base(message)
{
}
}
}