UNPKG

atomics-sync

Version:

JavaScript multithreading synchronization library

35 lines (32 loc) 981 B
/** * Error thrown when a deadlock situation is detected in synchronization primitives. * This typically occurs when threads are circularly waiting for resources/locks * held by each other. */ export class DeadlockError extends Error { constructor(message: string) { super(message); this.name = "DeadlockError"; } } /** * Error thrown when a thread attempts an operation it doesn't have permission for, * such as unlocking a mutex it doesn't own or accessing protected resources. */ export class PermissionError extends Error { constructor(message: string) { super(message); this.name = "PermissionError"; } } /** * Error thrown when invalid arguments or operations are detected, * such as passing non-integer values where integers are required, * or attempting operations on improperly initialized objects. */ export class InvalidError extends Error { constructor(message: string) { super(message); this.name = "InvalidError"; } }