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