@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
11 lines • 372 B
TypeScript
/**
* ProxyError is raised when a proxy can not be created or communication
* can not be established. This is a fatal error for that proxy, but
* retrying is still logical.
*/
export declare class ProxyError extends Error {
src?: unknown;
protected errorCode: string;
constructor(message?: string, src?: unknown);
}
//# sourceMappingURL=ProxyError.d.ts.map