using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Runtime.Remoting
{
/// The exception that is thrown to communicate errors to the client when the client connects to non-.NET Framework applications that cannot throw exceptions.
// Token: 0x0200044E RID: 1102
[ComVisible(true)]
[Serializable]
public class ServerException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06002A8C RID: 10892 RVA: 0x00089FD8 File Offset: 0x000881D8
public ServerException()
{
}
/// Initializes a new instance of the class with a specified message.
/// The message that describes the exception
// Token: 0x06002A8D RID: 10893 RVA: 0x00089FE0 File Offset: 0x000881E0
public ServerException(string message)
: base(message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception.
// Token: 0x06002A8E RID: 10894 RVA: 0x00089FEC File Offset: 0x000881EC
public ServerException(string message, Exception InnerException)
: base(message, InnerException)
{
}
// Token: 0x06002A8F RID: 10895 RVA: 0x00089FF8 File Offset: 0x000881F8
internal ServerException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}