Skip to content

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

  • readonly kind: parse_error | unsupported_extension | internal_error — Error category.
  • readonly message: string — Human-readable error description.
  • readonly evidenceIdentifier?: string — Which evidence caused the error (e.g., CRL issuer DN).

Released under the MIT License.