mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
982 B
25 lines
982 B
// ==========================================================================
|
|
// InfrastructureErrors.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Squidex.Infrastructure
|
|
{
|
|
public class InfrastructureErrors
|
|
{
|
|
public static readonly EventId CommandUnknown = new EventId(20000, "CommandUnknown");
|
|
|
|
public static readonly EventId CommandFailed = new EventId(20001, "CommandFailed");
|
|
|
|
public static readonly EventId EventResetFailed = new EventId(10000, "EventResetFailed");
|
|
|
|
public static readonly EventId EventHandlingFailed = new EventId(10001, "EventHandlingFailed");
|
|
|
|
public static readonly EventId EventDeserializationFailed = new EventId(10002, "EventDeserializationFailed");
|
|
}
|
|
}
|
|
|