9 lines
242 B
C#
9 lines
242 B
C#
using Kreta.KretaServer.Exceptions;
|
|
|
|
namespace Kreta.BusinessLogic.Exceptions
|
|
{
|
|
public class KretaJelszoModositasException : KretaException
|
|
{
|
|
public KretaJelszoModositasException(string message) : base(message) { }
|
|
}
|
|
}
|