// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: SynchronizationLockException
**
**
** Purpose: Wait(), Notify() or NotifyAll() was called from an unsynchronized
** block of code.
**
** Date: March 30, 1998
**
=============================================================================*/
namespace System.Threading {
using System;
//|
public class SynchronizationLockException : SystemException {
//|
public SynchronizationLockException()
: base("Arg_SynchronizationLockException") {
}
//|
public SynchronizationLockException(String message)
: base(message) {
}
//|
public SynchronizationLockException(String message, Exception innerException)
: base(message, innerException) {
}
}
}