singrdk/base/Libraries/System.Web/HttpException.cs

22 lines
516 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Note:
2008-11-17 18:29:00 -05:00
// This file was ported, from the Coriolis codebase to Singularity.
2008-03-05 09:52:00 -05:00
//
namespace System.Web
{
public class HttpException : System.Exception
{
// Do-nothing placeholder for now
public HttpException(string message) :
base(message)
{
}
}
}