import type { ErrorContext } from "../types"; import { CustomError } from "./BaseError"; export class ResocketError extends CustomError { constructor(message: ErrorContext) { super(message); this.name = "ResocketError"; } status: number = 1; }