using System.Net; namespace AipGateway.API.Service.Exceptions { public class ApiException : Exception { public HttpStatusCode StatusCode => HttpStatusCode.InternalServerError; public ApiException(string? message) : base(message) { } } }