singrdk/base/Applications/Runtime/Full/System/ProcessStateException.cs

25 lines
534 B
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System
{
public class ProcessStateException : SystemException
{
public ProcessStateException() : base("Arg_ProcessStateException")
{
}
public ProcessStateException(String message) : base(message)
{
}
public ProcessStateException(String message, Exception innerException)
: base(message, innerException)
{
}
}
}