// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace System.Web.Http
{
///
/// An action result that returns an empty response.
///
public class InternalServerErrorResult : StatusCodeResult
{
///
/// Initializes a new instance of the class.
///
public InternalServerErrorResult()
: base(StatusCodes.Status500InternalServerError)
{
}
}
}