RevocationExecutionError
Errors encountered while processing revocation evidence.
Distinct from RevocationIndeterminateReason: execution errors are code failures (malformed CRL, unsupported extension) rather than evaluation outcomes (CRL doesn't cover this certificate).
Collected in CheckChainRevocationValue.executionErrors.
ts
interface RevocationExecutionError {
readonly kind: parse_error | unsupported_extension | internal_error;
readonly message: string;
readonly evidenceIdentifier?: string;
}Properties
readonlykind:parse_error|unsupported_extension|internal_error— Error category.readonlymessage:string— Human-readable error description.readonlyevidenceIdentifier?:string— Which evidence caused the error (e.g., CRL issuer DN).