using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when the time allotted for a process or operation has expired.
// Token: 0x0200014A RID: 330
[Token(Token = "0x200014A")]
[ComVisible(true)]
[Serializable]
public class TimeoutException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000CCA RID: 3274 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCA")]
[Address(RVA = "0xF7B7F0", Offset = "0xF7A7F0", VA = "0x180F7B7F0")]
public TimeoutException()
{
}
/// Initializes a new instance of the class with the specified error message.
/// The message that describes the error.
// Token: 0x06000CCB RID: 3275 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCB")]
[Address(RVA = "0xF7B850", Offset = "0xF7A850", VA = "0x180F7B850")]
public TimeoutException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that contains serialized object data about the exception being thrown.
/// The object that contains contextual information about the source or destination. The parameter is reserved for future use, and can be specified as .
/// The parameter is .
/// The class name is , or is zero (0).
// Token: 0x06000CCC RID: 3276 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CCC")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected TimeoutException(SerializationInfo info, StreamingContext context)
{
}
}
}