singrdk/base/Kernel/Singularity/Channels/ChannelClosedException.cs

25 lines
631 B
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: ChannelClosedException.cs
//
// Note: File is part of Sing# runtime files and copied into Singularity tree
// whenever a new version of Sing# is dropped.
2008-11-17 18:29:00 -05:00
// Coordinate any changes with Sing# team.
2008-03-05 09:52:00 -05:00
//
using System;
namespace Microsoft.Singularity.Channels
{
public class ChannelClosedException : ChannelException
{
public ChannelClosedException()
{
}
}
}