practicekea_backend/microservices/_layers/common/CustomError.cs

17 lines
263 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class CustomError
{
public string Error { get; }
public CustomError(string message)
{
Error = message;
}
}
}