Table of Contents

Class IgniteServerException

Namespace
Apache.Ignite
Assembly
Apache.Ignite.dll

Ignite server-side exception.

[Serializable]
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Ignite exceptions use a special constructor.")]
public sealed class IgniteServerException : IgniteException, ISerializable
Inheritance
IgniteServerException
Implements
Inherited Members

Constructors

IgniteServerException(Guid, int, string, string?)

Initializes a new instance of the IgniteServerException class.

public IgniteServerException(Guid traceId, int code, string serverExceptionClass, string? serverStackTrace)

Parameters

traceId Guid

Trace id.

code int

Code.

serverExceptionClass string

Server exception class.

serverStackTrace string

Server stack trace.

Properties

ServerExceptionClass

Gets the server exception class name.

public string ServerExceptionClass { get; }

Property Value

string

ServerStackTrace

Gets the server stack trace.

Requires sendServerExceptionStackTraceToClient to be enabled on the server, otherwise will be null.
public string? ServerStackTrace { get; }

Property Value

string