namespace InnovEnergy.App.Backend;

public class Exceptions : Exception
{
    public String Type { get; set; }
    public String Detail { get; set; }
    public String Instance { get; set; }
    public Int32? Status { get; set; }
    public Exceptions(Int32? status, String type, String detail, String instance)
    {
        Type = type;
        Detail = detail;
        Instance = instance;
        Status = status;
    }
}