EveHealthResponseException
NexusLabs.Eve¶
EveHealthResponseException Class¶
Represents a successful health response that does not satisfy the eve health schema.
Inheritance System.Object → System.Exception → System.SystemException → System.IO.IOException → EveProtocolException → EveHealthResponseException
Constructors¶
EveHealthResponseException() Constructor¶
Initializes a health-response exception without structured issues.
EveHealthResponseException(string) Constructor¶
Initializes a health-response exception with a message.
Parameters¶
message System.String
The error message.
EveHealthResponseException(string, Exception) Constructor¶
Initializes a health-response exception with a message and underlying exception.
Parameters¶
message System.String
The error message.
innerException System.Exception
The underlying JSON parsing exception.
Properties¶
EveHealthResponseException.Issues Property¶
Gets the bounded structured validation issues. Invalid JSON reports an empty collection and preserves the parser failure through System.Exception.InnerException.
public System.Collections.Generic.IReadOnlyList<NexusLabs.Eve.EveHealthValidationIssue> Issues { get; }
Property Value¶
System.Collections.Generic.IReadOnlyList<EveHealthValidationIssue>