using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// The exception that is thrown when an attempt to check out a file that is checked into a source code management program is canceled or fails.
// Token: 0x020001BC RID: 444
[Token(Token = "0x20001BC")]
[Serializable]
public class CheckoutException : ExternalException
{
/// Initializes a new instance of the class with no associated message or error code.
// Token: 0x06000C19 RID: 3097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C19")]
[Address(RVA = "0x4E7160", Offset = "0x4E5F60", VA = "0x1804E7160")]
public CheckoutException()
{
}
/// Initializes a new instance of the class with the specified message and error code.
/// A message describing the exception.
/// The error code to pass.
// Token: 0x06000C1A RID: 3098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1A")]
[Address(RVA = "0x4E7170", Offset = "0x4E5F70", VA = "0x1804E7170")]
public CheckoutException(string message, int errorCode)
{
}
/// Initializes a new instance of the class using the specified serialization data and context.
/// The to be used for deserialization.
/// The destination to be used for deserialization.
// Token: 0x06000C1B RID: 3099 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1B")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected CheckoutException(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class that specifies that the check out was canceled. This field is read-only.
// Token: 0x04000655 RID: 1621
[Token(Token = "0x4000655")]
public static readonly CheckoutException Canceled;
}
}