Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | export type { OcapError, MarshaledError } from './types.ts';
export { DuplicateEndowmentError } from './errors/DuplicateEndowmentError.ts';
export { EvaluatorError } from './errors/EvaluatorError.ts';
export { SampleGenerationError } from './errors/SampleGenerationError.ts';
export { VatAlreadyExistsError } from './errors/VatAlreadyExistsError.ts';
export { VatDeletedError } from './errors/VatDeletedError.ts';
export { VatNotFoundError } from './errors/VatNotFoundError.ts';
export { StreamReadError } from './errors/StreamReadError.ts';
export { SubclusterNotFoundError } from './errors/SubclusterNotFoundError.ts';
export { AbortError } from './errors/AbortError.ts';
export {
ResourceLimitError,
type ResourceLimitType,
type ResourceLimitErrorData,
} from './errors/ResourceLimitError.ts';
export {
ErrorCode,
ErrorSentinel,
ErrorStruct,
MarshaledErrorStruct,
MarshaledOcapErrorStruct,
} from './constants.ts';
export { toError } from './utils/toError.ts';
export { isOcapError } from './utils/isOcapError.ts';
export { marshalError } from './marshal/marshalError.ts';
export { unmarshalError } from './marshal/unmarshalError.ts';
export { isMarshaledError } from './marshal/isMarshaledError.ts';
export { isMarshaledOcapError } from './marshal/isMarshaledOcapError.ts';
export { isRetryableNetworkError } from './utils/isRetryableNetworkError.ts';
export { getNetworkErrorCode } from './utils/getNetworkErrorCode.ts';
export { isResourceLimitError } from './utils/isResourceLimitError.ts';
|