Files
2026-06-04 11:42:34 +02:00

47 lines
2.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Runtime.Remoting
{
/// <summary>The exception that is thrown when something has gone wrong during remoting.</summary>
// Token: 0x0200044A RID: 1098
[ComVisible(true)]
[Serializable]
public class RemotingException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with default properties.</summary>
// Token: 0x06002A47 RID: 10823 RVA: 0x00088C38 File Offset: 0x00086E38
public RemotingException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with a specified message.</summary>
/// <param name="message">The error message that explains why the exception occurred. </param>
// Token: 0x06002A48 RID: 10824 RVA: 0x00088C40 File Offset: 0x00086E40
public RemotingException(string message)
: base(message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class from serialized data.</summary>
/// <param name="info">The object that holds the serialized object data. </param>
/// <param name="context">The contextual information about the source or destination of the exception. </param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
// Token: 0x06002A49 RID: 10825 RVA: 0x00088C4C File Offset: 0x00086E4C
protected RemotingException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> 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 why the exception occurred. </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: 0x06002A4A RID: 10826 RVA: 0x00088C58 File Offset: 0x00086E58
public RemotingException(string message, Exception InnerException)
: base(message, InnerException)
{
}
}
}