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

24 lines
595 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: ChannelTransferredException.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 ChannelTransferredException : ChannelException
{
public ChannelTransferredException()
{
}
}
}