Class GrpcError
Holds information about an exception caught by the neon desktop service.
Namespace: Neon.Kube.GrpcProto
Assembly: Neon.Kube.GrpcProto.dll
Syntax
[DataContract]
public class GrpcError
Constructors
GrpcError()
Default constructor.
Declaration
public GrpcError()
GrpcError(Exception)
Constructor.
Declaration
public GrpcError(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | The exception being wrapped. |
Properties
ExceptionType
The fully qualified type name of the exception.
Declaration
[DataMember(Order = 1)]
public string? ExceptionType { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
The exception message.
Declaration
[DataMember(Order = 2)]
public string? Message { get; set; }
Property Value
Type | Description |
---|---|
string |
StackTrace
The stack trace where the exception was thrown or null
when not available.
Declaration
[DataMember(Order = 3)]
public string? StackTrace { get; set; }
Property Value
Type | Description |
---|---|
string |