diff --git a/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs b/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs index 0fffee6..a74551e 100644 --- a/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs +++ b/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs @@ -14,6 +14,7 @@ public abstract class Problem : BaseModel public abstract string detail { get; } public abstract int status { get; } public abstract int errorCode { get; } + public virtual string message { get; set; } public virtual string type => $"{Path}{status}.{errorCode}-{title.ToLower().Replace(", ", ",").Replace(",", " ").Replace(" ", "-")}";