mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-03 01:02:51 +08:00
12 lines
248 B
C#
12 lines
248 B
C#
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.Repository
|
|
{
|
|
public class CannotAddDataError : Error
|
|
{
|
|
public CannotAddDataError(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|