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

25 lines
606 B
C#

////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: ChannelException.cs
//
// Note: File is part of Sing# runtime files and copied into Singularity tree
// whenever a new version of Sing# is dropped.
// Coordinate any changes with Sing# team.
//
using System;
namespace Microsoft.Singularity.Channels
{
public class ChannelException : Exception
{
public ChannelException()
{
}
}
}