MCPcopy Create free account
hub / github.com/ShipSecAI/studio / isNotFoundError

Method isNotFoundError

backend/src/temporal/temporal.service.ts:291–298  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

289 }
290
291 private isNotFoundError(error: unknown): error is ServiceError {
292 if (!error || typeof error !== 'object') {
293 return false;
294 }
295
296 const serviceError = error as ServiceError;
297 return serviceError.code === grpcStatus.NOT_FOUND;
298 }
299
300 private formatArgsSummary(args?: unknown[]): string {
301 if (!args || args.length === 0) {

Callers 1

ensureNamespaceMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected