kreta/Kreta.BusinessLogic/Exceptions/KretaJelszoModositasException.cs
2024-03-13 00:33:46 +01:00

9 lines
242 B
C#

using Kreta.KretaServer.Exceptions;
namespace Kreta.BusinessLogic.Exceptions
{
public class KretaJelszoModositasException : KretaException
{
public KretaJelszoModositasException(string message) : base(message) { }
}
}