5 lines
120 B
C#
5 lines
120 B
C#
namespace ApplicationLayer.GeneralExceptions
|
|
{
|
|
public class ApiException(string message) : Exception(message);
|
|
}
|