15 lines
461 B
C#
15 lines
461 B
C#
using System.Net;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Umbraco.Cms.Web.Common.ActionsResults
|
|
{
|
|
// TODO: What is the purpose of this? Doesn't seem to add any benefit
|
|
public class UmbracoProblemResult : ObjectResult
|
|
{
|
|
public UmbracoProblemResult(string message, HttpStatusCode httpStatusCode = HttpStatusCode.InternalServerError) : base(new {Message = message})
|
|
{
|
|
StatusCode = (int) httpStatusCode;
|
|
}
|
|
}
|
|
}
|