@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
11 lines (10 loc) • 386 B
TypeScript
import { NetworkError } from "./network.js";
/**
* BadRequestError is raised when a request made to Horizon is invalid in some
* way (incorrect timebounds for trade call builders, for example.)
*
* @param message - Human-readable error message
* @param response - Response details, received from the Horizon server
*/
export declare class BadRequestError extends NetworkError {
}