singrdk/base/Services/ServiceManager/AccessControlException.cs

26 lines
611 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: Services\ServiceManager\AccessControlException.cs
//
// Note: Exception for service access control
//
using System;
namespace Microsoft.Singularity.Services.ServiceManager
{
public class AccessControlException : Exception
{
}
2008-11-17 18:29:00 -05:00
class InvalidStateException : Exception
{
public InvalidStateException()
: base("Invalid state")
{}
}
2008-03-05 09:52:00 -05:00
}