UNPKG

@atomiqlabs/sdk-lib

Version:

Basic SDK functionality library for atomiq

13 lines (10 loc) 338 B
/** * An error or inconsistency in the intermediary's returned data, this will blacklist the intermediary */ export class IntermediaryError extends Error { constructor(msg: string) { super(msg); // Set the prototype explicitly. Object.setPrototypeOf(this, IntermediaryError.prototype); } }