laatzen/Common/CommonCore/Exceptions/DB/NoKeyException.cs
2021-10-01 11:09:20 +02:00

42 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Xylem.Common.CommonCore.Exceptions.Db
{
public class NoKeyStoredException : Exception, ICommonException
{
Guid? LCode = null;
public NoKeyStoredException(Guid? Location = null)
{
LCode = Location;
}
public NoKeyStoredException(string message, Guid? Location = null)
: base(message)
{
LCode = Location;
}
public NoKeyStoredException(string message, Exception inner, Guid? Location = null)
: base(message, inner)
{
LCode = Location;
}
public string GetHelpText()
{
var sb = new StringBuilder();
sb.AppendLine($"Report this to a developer or database admin.");
sb.AppendLine($"Something went wrong while store the keyset on BSI.");
if (LCode.HasValue)
{
sb.AppendLine($"LCode:{LCode.Value}");
}
return sb.ToString();
}
}
}