UNPKG
@bigmi/client
Version:
alpha (0.6.6-alpha.2)
beta (0.8.0-beta.0)
latest (0.9.0)
preview (0.0.0-preview-aab0339)
0.9.0
0.8.1
0.8.0
0.8.0-beta.0
0.7.1
0.7.0
0.6.6-alpha-unhosted.0
0.6.6-alpha.2
0.6.6-alpha.1
0.6.6-alpha.0
0.6.5
0.6.4
0.6.4-alpha.0
0.6.3
0.6.3-alpha.3
0.6.3-alpha.2
0.6.3-alpha.1
0.6.3-alpha.0
0.6.2
0.6.2-alpha.0
0.6.1
0.6.1-alpha.0
0.6.0
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.4.0-beta.2
0.4.0-beta.1
0.4.0-beta.0
0.3.1
0.3.1-beta.0
0.3.0
0.3.0-beta.6
0.3.0-beta.5
0.3.0-beta.4
0.3.0-beta.3
0.3.0-beta.2
0.3.0-beta.1
0.3.0-beta.0
0.2.1
0.2.0
0.2.0-beta.2
0.2.0-beta.1
0.2.0-beta.0
0.1.1
0.1.0
0.0.7
0.0.7-beta.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0-preview-aab0339
Reactive primitives for Bitcoin apps.
github.com/lifinance/bigmi
lifinance/bigmi
@bigmi/client
/
src
/
errors
/
connectors.ts
13 lines
(11 loc)
•
279 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
BaseError
}
from
'@bigmi/core'
export
class
ProviderNotFoundError
extends
BaseError
{
code
:
number
message
:
string
name =
'ProviderNotFoundError'
constructor
(
) {
super
(
'Provider not found.'
)
this
.
message
=
'Provider not found'
this
.
code
=
243
} }