init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user