/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Exceptions/UnhandledEventException.cs
28 строк
760 B
joegoldman2
Add .NET 8 TFM (#4791)
28 ноя 2023, 16:55
Не верифицирован
28 ноя 2023, 16:55
35743ce
Код
Авторство
О чём код?
namespace MassTransit { using System; using System.Runtime.Serialization; [Serializable] public class UnhandledEventException : SagaStateMachineException { public UnhandledEventException() { } public UnhandledEventException(string machineType, string eventName, string stateName) : base($"The {eventName} event is not handled during the {stateName} state for the {machineType} state machine") { } #if NET8_0_OR_GREATER [Obsolete("Formatter-based serialization is obsolete and should not be used.")] #endif protected UnhandledEventException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }