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

16 lines
535 B
C#

using Kreta.Framework;
using Kreta.Framework.Logging;
using Kreta.KretaServer.Exceptions;
namespace Kreta.BusinessLogic.Exceptions
{
[ErrorCode(Events.DEVELOPER_DEFINIED)]
[LogLevel(Kreta.Framework.Logging.LogLevel.WARNING)]
public class CannotBeModifiedException : KretaException
{
public CannotBeModifiedException()
: base(StringResourcesUtil.GetString(3152)/*A módosítás nem hajtható végre, mert a módosítandó értékre már létezik hivatkozás.*/, null)
{
}
}
}