Class IgniteServerException
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
traceIdGuidTrace id.
codeintCode.
serverExceptionClassstringServer exception class.
serverStackTracestringServer stack trace.
Properties
ServerExceptionClass
Gets the server exception class name.
public string ServerExceptionClass { get; }
Property Value
ServerStackTrace
Gets the server stack trace.
RequiressendServerExceptionStackTraceToClient to be enabled on the server, otherwise will be null.
public string? ServerStackTrace { get; }