Rob / Application /Abstractions /Exceptions /RoutingException.cs
danylokhodus's picture
fix: resolve compilation errors and move RoutingException to Abstractions
f7ed2f8
Raw
History Blame Contribute Delete
368 Bytes
using System;
using System.Collections.Generic;
namespace Application.Abstractions.Exceptions
{
public class RoutingException : Exception
{
public List<string> DebugLogs { get; }
public RoutingException(string message, List<string> logs) : base(message)
{
DebugLogs = logs ?? new List<string>();
}
}
}