22 lines
613 B
C#
22 lines
613 B
C#
using Kreta.Framework;
|
|
using Kreta.Framework.Logging;
|
|
using Kreta.KretaServer.Exceptions;
|
|
|
|
namespace Kreta.BusinessLogic.Exceptions
|
|
{
|
|
[ErrorCode(Events.DEVELOPER_DEFINIED)]
|
|
[LogLevel(LogLevel.WARNING)]
|
|
public class PosszeidonIktatasException : KretaException
|
|
{
|
|
public PosszeidonIktatasException()
|
|
: base(StringResourcesUtil.GetString(4198)/*Hiba történt a dokumentum iktatása közben.*/, null)
|
|
{
|
|
}
|
|
public PosszeidonIktatasException(string message)
|
|
|
|
: base(message, null)
|
|
{
|
|
SetValue("0", message);
|
|
}
|
|
}
|
|
}
|