di-wings
Version:
Aviary Tech's common library for decentralized identity
28 lines • 1.03 kB
TypeScript
export declare class WorkflowError extends Error {
details?: string | undefined;
constructor(message: string, details?: string | undefined);
}
export declare class WorkflowNotFoundError extends WorkflowError {
constructor(workflowId: string);
}
export declare class ExchangeNotFoundError extends WorkflowError {
constructor(exchangeId: string);
}
export declare class InvalidWorkflowConfigError extends WorkflowError {
constructor(message: string);
}
export declare class InvalidVPError extends WorkflowError {
context?: any | undefined;
constructor(message: string, context?: any | undefined);
}
export declare class CredentialIssuanceError extends WorkflowError {
context?: any | undefined;
constructor(message: string, context?: any | undefined);
}
export declare class ExchangeStateError extends WorkflowError {
constructor(message: string);
}
export declare class ExchangeExpiredError extends WorkflowError {
constructor(exchangeId: string);
}
//# sourceMappingURL=errors.d.ts.map