15 lines
308 B
C#
15 lines
308 B
C#
using System;
|
|
|
|
namespace Kreta.Framework
|
|
{
|
|
[Serializable]
|
|
public class JelszoValtoztatasKotelezoException : ServerException
|
|
{
|
|
public string Link { get; }
|
|
|
|
public JelszoValtoztatasKotelezoException(string link) : base()
|
|
{
|
|
this.Link = link;
|
|
}
|
|
}
|
|
}
|