10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
export class GatewayLockError extends Error {
|
|
constructor(
|
|
message: string,
|
|
public readonly cause?: unknown,
|
|
) {
|
|
super(message);
|
|
this.name = "GatewayLockError";
|
|
}
|
|
}
|