16 lines
535 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|