scripts
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace System.Threading
|
||||
{
|
||||
/// <summary>The exception that is thrown when an attempt is made to open a system mutex or semaphore that does not exist.</summary>
|
||||
/// <filterpriority>2</filterpriority>
|
||||
// Token: 0x0200062B RID: 1579
|
||||
[ComVisible(false)]
|
||||
[Serializable]
|
||||
public class WaitHandleCannotBeOpenedException : ApplicationException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with default values.</summary>
|
||||
// Token: 0x06003A07 RID: 14855 RVA: 0x000C72D0 File Offset: 0x000C54D0
|
||||
public WaitHandleCannotBeOpenedException()
|
||||
: base(Locale.GetText("Named handle doesn't exists."))
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
// Token: 0x06003A08 RID: 14856 RVA: 0x000C72E4 File Offset: 0x000C54E4
|
||||
public WaitHandleCannotBeOpenedException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
|
||||
// Token: 0x06003A09 RID: 14857 RVA: 0x000C72F0 File Offset: 0x000C54F0
|
||||
public WaitHandleCannotBeOpenedException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown. </param>
|
||||
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination.</param>
|
||||
// Token: 0x06003A0A RID: 14858 RVA: 0x000C72FC File Offset: 0x000C54FC
|
||||
protected WaitHandleCannotBeOpenedException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user