UNPKG

@ethersphere/bee-js

Version:
16 lines (15 loc) 563 B
export declare class BeeError extends Error { constructor(message: string); } export declare class BeeArgumentError extends BeeError { readonly value: unknown; constructor(message: string, value: unknown); } export declare class BeeResponseError extends BeeError { method: string; url: string; responseBody?: unknown; status?: number | undefined; statusText?: string | undefined; constructor(method: string, url: string, message: string, responseBody?: unknown, status?: number | undefined, statusText?: string | undefined); }