Table of Contents

Class IgniteException

Namespace
Apache.Ignite
Assembly
Apache.Ignite.dll

Ignite exception.

[Serializable]
public class IgniteException : Exception, ISerializable
Inheritance
IgniteException
Implements
Derived
Inherited Members

Constructors

IgniteException(Guid, int, string?, Exception?)

Initializes a new instance of the IgniteException class.

public IgniteException(Guid traceId, int code, string? message, Exception? innerException = null)

Parameters

traceId Guid

Trace id.

code int

Code.

message string

Message.

innerException Exception

Inner exception.

Properties

Code

Gets the full exception code.

public int Code { get; }

Property Value

int

CodeAsString

Gets the code as string.

public string CodeAsString { get; }

Property Value

string

ErrorCode

Gets the error code.

public short ErrorCode { get; }

Property Value

short

ErrorPrefix

Gets the group error prefix.

public string ErrorPrefix { get; }

Property Value

string

GroupCode

Gets the group code.

public short GroupCode { get; }

Property Value

short

GroupName

Gets the group name.

public string GroupName { get; }

Property Value

string

TraceId

Gets the trace id (correlation id).

public Guid TraceId { get; }

Property Value

Guid