UNPKG
@case-contract-testing/case
Version:
latest (0.7.0)
0.7.0
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
Next-generation contract testing suite
case.contract-testing.io
case-contract-testing/case
@case-contract-testing/case
/
dist
/
src
/
connectors
/
broker
/
axios
/
apiErrors.d.ts
8 lines
(7 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
const
API_ERROR
=
"BROKER_ERROR"
;
export
declare
const
API_NO_RESPONSE
=
"BROKER_NO_RESPONSE"
;
export
declare
const
API_NOT_AUTHORISED
=
"BROKER_NOT_AUTHORISED"
;
export
declare
class
BrokerError
extends
Error
{
code
:
string
;
constructor
(
message
?:
string
,
code
?:
string
); }