UNPKG
@iyio/convo-lang
Version:
latest (0.7.22)
0.7.22
0.7.19
0.7.17
0.7.15
0.7.14
0.7.13
0.7.12
0.7.11
0.7.10
0.7.9
0.7.7
0.7.6
0.7.5
0.7.2
0.7.0
0.6.5
0.6.4
0.6.3
0.6.0
0.5.18
0.5.17
0.5.16
0.5.15
0.5.14
0.5.13
0.5.12
0.5.11
0.5.10
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.0
A conversational language.
github.com/iyioio/common
iyioio/common
@iyio/convo-lang
/
esm
/
src
/
lib
/
ConvoError.js
9 lines
•
301 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
class
ConvoError
extends
Error
{
constructor
(
type
, refs = {}, message
) {
super
(
`ConvoError -
${
type
}
${message ?
' - '
+ message :
''
}
`
);
this
.
convoType
=
type
;
this
.
convoMessage
= message;
this
.
convoRefs
= refs; } }
//# sourceMappingURL=ConvoError.js.map