singrdk/base/Applications/Runtime/Full/System/Threading/HandleCreateException.cs

25 lines
544 B
C#
Raw Permalink Normal View History

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