@temporalio/common
Version:
Common library for code that's used across the Client, Worker, and/or Workflow
55 lines (49 loc) • 1.56 kB
text/typescript
import { SymbolBasedInstanceOfError } from './type-helpers';
/**
* Thrown from code that receives a value that is unexpected or that it's unable to handle.
*/
('ValueError')
export class ValueError extends Error {
constructor(
message: string | undefined,
public readonly cause?: unknown
) {
super(message ?? undefined);
}
}
/**
* Thrown when a Payload Converter is misconfigured.
*/
('PayloadConverterError')
export class PayloadConverterError extends ValueError {}
/**
* Used in different parts of the SDK to note that something unexpected has happened.
*/
('IllegalStateError')
export class IllegalStateError extends Error {}
/**
* Thrown when a Workflow with the given Id is not known to Temporal Server.
* It could be because:
* - Id passed is incorrect
* - Workflow is closed (for some calls, e.g. `terminate`)
* - Workflow was deleted from the Server after reaching its retention limit
*/
('WorkflowNotFoundError')
export class WorkflowNotFoundError extends Error {
constructor(
message: string,
public readonly workflowId: string,
public readonly runId: string | undefined
) {
super(message);
}
}
/**
* Thrown when the specified namespace is not known to Temporal Server.
*/
('NamespaceNotFoundError')
export class NamespaceNotFoundError extends Error {
constructor(public readonly namespace: string) {
super(`Namespace not found: '${namespace}'`);
}
}