@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
11 lines • 421 B
TypeScript
/**
* GatewayConnectorError is a generic error type, that simply means
* that the operation failed inside the gateway iframe for some reason.
* We got a response, which will be recorded in the error.
*/
export declare class GatewayConnectorError extends Error {
src?: unknown;
protected errorCode: string;
constructor(message?: string, src?: unknown);
}
//# sourceMappingURL=GatewayConnectorError.d.ts.map