24 lines
580 B
C#
24 lines
580 B
C#
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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.
|
||
|
//
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace Microsoft.Singularity.Channels
|
||
|
{
|
||
|
public class ChannelClosedException : ChannelException
|
||
|
{
|
||
|
public ChannelClosedException()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|