24 lines
561 B
C#
24 lines
561 B
C#
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|