UNPKG
@hiero-ledger/sdk
Version:
beta (2.73.1-beta.1)
latest (2.74.0)
2.74.0
2.73.2
2.73.1
2.73.1-beta.1
2.72.0
2.71.1
2.71.0
2.71.0-beta.0
2.70.0
Hiero SDK
github.com/hiero-ledger/hiero-sdk-js
hiero-ledger/hiero-sdk-js
@hiero-ledger/sdk
/
lib
/
http
/
HttpError.d.ts
15 lines
(14 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Describes how the http request failed. */
export
default
class
HttpError
extends
Error
{
/** *
@param
{HttpStatus} status */
constructor
(
status
: HttpStatus);
/** *
@readonly
*/
readonly
status: HttpStatus; } import HttpStatus
from
"./HttpStatus.js"
;