// integrations/atlas/errors.js export class XyteHttpError extends Error { constructor(message, { status, body, url } = {}) { super(message); this.name = 'XyteHttpError'; this.status = status; this.body = body; this.url = url; } }