mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-03 02:12:50 +08:00
13 lines
331 B
C#
13 lines
331 B
C#
using Ocelot.Library.Infrastructure.Errors;
|
|
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.Repository
|
|
{
|
|
public class CannotFindDataError : Error
|
|
{
|
|
public CannotFindDataError(string message) : base(message, OcelotErrorCode.CannotFindDataError)
|
|
{
|
|
}
|
|
}
|
|
}
|