/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Exceptions/FutureNotFoundException.cs
38 строк
921 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 FutureNotFoundException : MassTransitException { public FutureNotFoundException() { } public FutureNotFoundException(Type type, Guid id) : base($"Future {TypeCache.GetShortName(type)}({id}) not found") { } public FutureNotFoundException(string message) : base(message) { } public FutureNotFoundException(string message, Exception innerException) : base(message, innerException) { } #if NET8_0_OR_GREATER [Obsolete("Formatter-based serialization is obsolete and should not be used.")] #endif protected FutureNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }