Ports Atlas /check as /atlasdiag: Hub resolve, UI tunnel, WebSocket report for sources/zones/accessories, low source dB warnings, and auto-disable of the monitor speaker when left on after troubleshooting. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
// 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;
|
|
}
|
|
}
|