using System; namespace Kreta.Framework { [Serializable] public class JelszoValtoztatasKotelezoException : ServerException { public string Link { get; } public JelszoValtoztatasKotelezoException(string link) : base() { this.Link = link; } } }