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

24 lines
561 B
C#
Raw Normal View History

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